destroyInterstitialAd static method

Future<bool?> destroyInterstitialAd()

Removes the Ad.

Implementation

static Future<bool?> destroyInterstitialAd() async {
  try {
    final result = await _channel.invokeMethod(DESTROY_INTERSTITIAL_METHOD);
    return result;
  } on PlatformException {
    return false;
  }
}