callInterstitialAds method
Implementation
Future callInterstitialAds() async {
try {
return true;
} on PlatformException catch (e) {
if (kDebugMode) {
print("Failed to call interstitial ad: '${e.message}'.");
}
return true;
}
}