isInterstitialReady static method
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;
}