showFullscreen method
Shows fullscreen if ad is ready.
Implementation
Future<void> showFullscreen() async {
try {
await AatkitFlutterPluginPlatform.instance.showFullscreen();
} on PlatformException catch (e) {
log("PlatformException, error: $e");
}
}