isLoaded static method

Future<bool> isLoaded(
  1. int adType
)

Check if ad is loaded. for adType

Returns true if ads currently loaded and can be shown, otherwise false.

Implementation

static Future<bool> isLoaded(int adType) async {
  return await _channel.invokeMethod('isLoaded', {'adType': adType}) ?? false;
}