loadAndShowInterstitialAd method
dynamic
loadAndShowInterstitialAd()
Implementation
loadAndShowInterstitialAd() async {
incrementAdClickCount();
//if (AppConfig.admobEnabled) {
if (_nbrClickCount == 5) {
resetAdClickCount();
if (_interstitialAd == null) {
await createInterstitialAd();
}
showInterstitialAd();
}
//}
}