showInterstitialAd method
Implementation
@override
Future<String?> showInterstitialAd(String adspotId) async {
final result = await methodChannel.invokeMethod<String>(
'showInterstitialAd',
{'adspotId': adspotId},
);
return result;
}
@override
Future<String?> showInterstitialAd(String adspotId) async {
final result = await methodChannel.invokeMethod<String>(
'showInterstitialAd',
{'adspotId': adspotId},
);
return result;
}