showInterstitialAdWithShowConfig method

Future<String> showInterstitialAdWithShowConfig({
  1. required String placementID,
  2. required String sceneID,
  3. required String showCustomExt,
  4. Map<String, Object?>? atCustomContentResult,
})

Implementation

Future<String> showInterstitialAdWithShowConfig({
  required String placementID,
  required String sceneID,
  required String showCustomExt,
  Map<String, Object?>? atCustomContentResult,
}) async {
  return await AnythinkSdk.channel.invokeMethod("showInterstitialAdWithShowConfig", {
    "placementID": placementID,
    "sceneID": sceneID,
    "showCustomExt": showCustomExt,
    if (atCustomContentResult != null)
      "atCustomContentResult": atCustomContentResult,
  });
}