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