showAppOpenAd static method

void showAppOpenAd(
  1. String adUnitId, {
  2. dynamic placement,
  3. dynamic customData,
})

Shows the app open ad with the specified adUnitId.

Implementation

static void showAppOpenAd(String adUnitId, {placement, customData}) {
  channel.invokeMethod('showAppOpenAd', {
    'ad_unit_id': adUnitId,
    'placement': placement,
    'custom_data': customData,
  });
}