loadAd method
dynamic
loadAd({})
Implementation
loadAd({
required String posId,
required double adWidth,
required double adHeight,
Map<String, String> scenes = const {},
bool? showClose = false,
}) {
load(
posId: posId,
methodName: ProAdCore.methodLoadServiceAd,
arguments: {
ProAdCore.keyAdWidth: adWidth,
ProAdCore.keyAdHeight: adHeight,
ProAdCore.keyScenes:scenes,
ProAdCore.keyAdShowClose: showClose
},
);
}