loadInterstitialAd function

Future loadInterstitialAd(
  1. {required String mCodeId,
  2. double? expressViewWidth,
  3. double? expressViewHeight}
)

Implementation

Future loadInterstitialAd(
    {required String mCodeId,
    double? expressViewWidth,
    double? expressViewHeight}) async {
  return await _channel.invokeMethod("loadInterstitialAd", {
    "mCodeId": mCodeId,
    "expressViewWidth": expressViewWidth,
    "expressViewHeight": expressViewHeight,
  });
}