show method

Future<bool?> show()

Implementation

Future<bool?> show() async {
  final bool? result = await Ads.instance.channelInterstitial.invokeMethod(
    'showInterstitialAd',
    <String, dynamic>{
      'id': id,
      'adType': _adType,
    },
  );
  return result;
}