showAd method

dynamic showAd({
  1. required BwtAd bwtAd,
})

展示插屏广告

Implementation

showAd({required BwtAd bwtAd}) async {
  await BwtAdManager.invokeMethod(
    method: BwtAdCore.methodShowInterstitialAd,
    params: {BwtAdCore.keyAdId: bwtAd.adId},
  );
}