showCloseInterstitial method

Future<void> showCloseInterstitial(
  1. int counter
)

✅ Back press interstitial trigger

Implementation

Future<void> showCloseInterstitial(int counter) async {
  if (!(admodel.isBackAds ?? false)) return;
  if ((admodel.iseveryads ?? false) || (counter == (admodel.adTime ?? 2))) {
    await _showPriorityInterstitial();
  }
}