callCloseInterstitialAds method

Future callCloseInterstitialAds()

Implementation

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