isLoaded static method

Future<bool> isLoaded(
  1. AppodealAdType adType
)

Checks if an ad is loaded for adType.

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

Implementation

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