getAdaptiveBannerHeightForWidth static method

Future<double?> getAdaptiveBannerHeightForWidth(
  1. double width
)

Gets the adaptive banner size for the provided width.

Implementation

static Future<double?> getAdaptiveBannerHeightForWidth(double width) {
  return channel.invokeMethod('getAdaptiveBannerHeightForWidth', {
    'width': width,
  });
}