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