showInterAd method

  1. @override
void showInterAd({
  1. AdModuleWithCallBacks? adModuleCallBacks,
})
override

Implementation

@override
void showInterAd({AdModuleWithCallBacks? adModuleCallBacks}) {
  if (interstitialAd != null) {
    interstitialAd!.show();
    return;
  }
  throw Exception("Please Initialize Ad Before Calling");
}