showInterstitial static method

Future<bool> showInterstitial({
  1. required String adId,
})

Show an interstitial ad

Implementation

static Future<bool> showInterstitial({required String adId}) async {
  return await _invokeMethod<bool>('showAd', {'adId': adId}) ?? false;
}