showInterstitial method
✅ Normal interstitial trigger
Implementation
Future<void> showInterstitial(int counter) async {
if (!(admodel.isinterstitialenable ?? false)) return;
if ((admodel.iseveryads ?? false) || (counter == (admodel.adTime ?? 2))) {
await _showPriorityInterstitial();
}
}