isAppOpenAdReady static method

Future<bool?> isAppOpenAdReady(
  1. String adUnitId
)

Check if the ad is ready to be shown with the specified adUnitId.

Implementation

static Future<bool?> isAppOpenAdReady(String adUnitId) {
  return channel.invokeMethod('isAppOpenAdReady', {
    'ad_unit_id': adUnitId,
  });
}