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