loadInterstitialAd method

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

Implementation

Future loadInterstitialAd(
    {required String mCodeId,
    double? expressViewWidth,
    double? expressViewHeight}) async {
  return BytedancePangolinPlatform.instance.loadInterstitialAd(
      mCodeId: mCodeId,
      expressViewWidth: expressViewWidth,
      expressViewHeight: expressViewHeight);
}