isRewardedAdReady static method

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

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

Implementation

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