native method
Implementation
Widget native(Function callBack, CustomNativeAdType type) {
if (admodel == null || !(admodel?.isad ?? false)) {
return Container();
}
return DynamicNativeAd(
adPriority: admodel?.nativeAdPriority ?? [],
type: type,
callBack: () {
callBack.call();
},
);
}