destroy method

Future<void> destroy()

Implementation

Future<void> destroy() async {
  assert(!_destroyed);
  if (_destroyed) return;
  _destroyed = true;

  await InterstitialAdPlatformInterface.destroyInterstitialAd(_id);
}