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