showInterstitialAd method

  1. @override
Future<void> showInterstitialAd(
  1. String adObjectId
)
override

Shows a loaded interstitial ad.

Implementation

@override
Future<void> showInterstitialAd(String adObjectId) async {
  await methodChannel
      .invokeMethod<void>('showInterstitialAd', {'adObjectId': adObjectId});
}