isInterstitialAdLoaded method
Returns bool indicating whether ad has been loaded
if adNetwork is provided, only that network's ad would be checked
Implementation
bool isInterstitialAdLoaded() {
final ad = _interstitialAds.firstWhereOrNull((e) => e.isAdLoaded);
return ad?.isAdLoaded ?? false;
}