showFullscreen method

Future<void> showFullscreen()

Shows fullscreen if ad is ready.

Implementation

Future<void> showFullscreen() async {
  try {
    await AatkitFlutterPluginPlatform.instance.showFullscreen();
  } on PlatformException catch (e) {
    log("PlatformException, error: $e");
  }
}