showAppOpenAd static method
Shows the app open ad with the specified adUnitId
.
Implementation
static void showAppOpenAd(String adUnitId, {String? placement, String? customData}) {
_methodChannel.invokeMethod('showAppOpenAd', {
'ad_unit_id': adUnitId,
'placement': placement,
'custom_data': customData,
});
}