showFullScreenVideoAd static method

Future<bool> showFullScreenVideoAd(
  1. String posId
)

展示全屏视频、新插屏广告 posId 广告位 id

Implementation

static Future<bool> showFullScreenVideoAd(String posId) async {
  final bool result = await _methodChannel.invokeMethod(
    'showFullScreenVideoAd',
    {
      'posId': posId,
    },
  );
  return result;
}