callAppOpenAds method
Implementation
@override
Future callAppOpenAds() async {
try {
await platform.invokeMethod('ADOpen');
return true;
} on PlatformException catch (e) {
if (kDebugMode) {
print("Failed to call open ad: '${e.message}'.");
}
return true;
}
}