showInterstitial static method

Future showInterstitial(
  1. String? placementName
)

Implementation

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