getLandscapeBannerSize static method

Future<BannerAdSize> getLandscapeBannerSize(
  1. int width
)

Implementation

static Future<BannerAdSize> getLandscapeBannerSize(int width) async {
  Map<dynamic, dynamic> bannerJson = await Ads.instance.channel.invokeMethod(
    'getLandscapeBannerSize',
    <String, dynamic>{
      'width': width,
    },
  );
  return fromJson(bannerJson);
}