loadAd method
dynamic
loadAd({})
加载广告
Implementation
loadAd({required String posId, bool loadThenShow = true,Map<String, String> scenes = const {}}) {
load(
posId: posId,
methodName: loadThenShow
? BwtAdCore.methodLoadThenShowInterstitialAd
: BwtAdCore.methodLoadInterstitialAd,
arguments: {BwtAdCore.keyScenes:scenes}
);
}