fittingBannerSizesLandscape method

Future<List<BannerSize>?> fittingBannerSizesLandscape()

Returns the set of 'BannerSize' that will fit on a given device in landscape screen orientation.

Implementation

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