callAppOpenAds method

  1. @override
Future callAppOpenAds()
override

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;
  }
}