isInterstitialReady static method

Future<bool> isInterstitialReady({
  1. required String adUnitId,
})

Check if the ad is ready to be shown.

Implementation

static Future<bool> isInterstitialReady({
  required String adUnitId,
}) async {
  return await _invokeMethod<bool>(
        'isInterstitialReady',
        {'adUnitId': adUnitId},
      ) ??
      false;
}