showInterstitial static method
Implementation
static Future<dynamic> showInterstitial(String? placementName) async {
if (placementName == null) {
await _channel.invokeMethod('showInterstitial');
} else {
await _channel.invokeMethod('showInterstitial', {
'placementName': placementName
});
}
}