showInterstitialAd static method

Future<bool> showInterstitialAd(
  1. String posId
)

展示插屏广告 posId 广告位 id

Implementation

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