maximumBannerSizeLandscape method

Future<BannerSize?> maximumBannerSizeLandscape()

Returns the 'BannerSize' with maximum width that will fit on a given device in landscape screen orientation.

Implementation

Future<BannerSize?> maximumBannerSizeLandscape() async {
  try {
    return await AatkitFlutterPluginPlatform.instance
        .maximumBannerSizeLandscape();
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
    return null;
  }
}