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: BwtAdCore.methodLoadServiceAd,
arguments: {
BwtAdCore.keyAdWidth: adWidth,
BwtAdCore.keyAdHeight: adHeight,
BwtAdCore.keyAdShowClose: showClose,
BwtAdCore.keyScenes:scenes,
},
);
}