showNativeAd method
Implementation
Future<String> showNativeAd({
required String placementID,
required Map extraMap,
bool isAdaptiveHeight=false
}) async {
return await AnythinkSdk.channel.invokeMethod("showNativeAd", {
"placementID": placementID,
"extraDic": extraMap,
"isAdaptiveHeight":isAdaptiveHeight
});
}