showInterstitialAd static method

void showInterstitialAd()

Implementation

static void showInterstitialAd() {
  if (interstitialAd != null && _isLoaded) {
    interstitialAd!.show().then(
          (value) => _preloadAd(),
        );
  }
}