showInterstitialAd static method

Future<bool?> showInterstitialAd()

Implementation

static Future<bool?> showInterstitialAd() async {
  final res = await _channel.invokeMethod('showInterstitialAd');
  return Future.value(res as bool);
}