callInterstitialAds method

Future callInterstitialAds()

Implementation

Future callInterstitialAds() async {
  try {
    return true;
  } on PlatformException catch (e) {
    if (kDebugMode) {
      print("Failed to call interstitial ad: '${e.message}'.");
    }
    return true;
  }
}