getCallInterstitialAds method

  1. @override
Future getCallInterstitialAds()
override

Implementation

@override
Future getCallInterstitialAds() async {
  try {
    await platform.invokeMethod('Interstitial');
    return true;
  } on PlatformException catch (e) {
    if (kDebugMode) {
      print("Failed to get battery level: '${e.message}'.");
    }
    return true;
  }
}