show static method

Future<bool> show(
  1. AppodealAdType adType, [
  2. String placement = "default"
])

Shows adType advertising with placement.

Returns true if the ad can be shown with this placement, otherwise false.

Implementation

static Future<bool> show(AppodealAdType adType,
    [String placement = "default"]) async {
  return await _channel.invokeMethod(
      'show', {'adType': adType.platformShowType, 'placement': placement});
}