loadAd method

dynamic loadAd({
  1. required String posId,
  2. bool loadThenShow = true,
})

加载广告

Implementation

loadAd({required String posId, bool loadThenShow = true}) {
  load(
    posId: posId,
    methodName: loadThenShow
        ? ProAdCore.methodLoadThenShowInterstitialAd
        : ProAdCore.methodLoadInterstitialAd,
  );
}