showAppOpenAd method
Shows app open ad if it's ready.
Implementation
Future<void> showAppOpenAd() async {
try {
await AatkitFlutterPluginPlatform.instance.showAppOpenAd();
} on PlatformException catch (e) {
log("PlatformException, error: $e");
}
}