callBackAds method

  1. @override
Future<bool> callBackAds()
override

Implementation

@override
Future<bool> callBackAds() async {
  try {
    return await platform.invokeMethod('backAd');
  } on PlatformException catch (e) {
    if (kDebugMode) {
      print("Failed to call backAd interstitial ad: '${e.message}'.");
    }
    return true;
  }
}