run method
Load or show FullScreen ads then call onNext
Implementation
void run([VoidCallback? doNext]) {
log('InterstitialAd.run', name: 'AdMob');
_requestedTimes++;
if (_interstitialAd == null) {
_loadAd();
doNext?.call();
} else if (_requestedTimes >= config.requestTimeToShow) {
show(doNext: doNext);
} else {
doNext?.call();
}
}