showInterstitialAd static method
展示插屏广告
adId 广告配置 adId
Implementation
static Future<bool> showInterstitialAd(String adId) async {
final bool result = await _channel.invokeMethod(
'showInterstitialAd',
{'adId': adId},
);
return result;
}