loadAd method

dynamic loadAd({
  1. required String posId,
  2. required double adWidth,
})

加载广告

Implementation

loadAd({
  required String posId,
  required double adWidth,
}) {
  load(
    posId: posId,
    methodName: ProAdCore.methodLoadNativeExpressAd,
    arguments: {ProAdCore.keyAdWidth: adWidth},
  );
}