native method
Implementation
Widget native(Function callBack, MyAds type) {
if (admodel == null) {
return Container();
}
return DynamicNativeAd(
admodel: admodel!,
type: type.name,
callBack: () {
callBack.call();
},
);
}