createLoadBannerAdSize method

Map createLoadBannerAdSize(
  1. double width,
  2. double height, {
  3. double x = 0,
  4. double y = 0,
})

Implementation

Map createLoadBannerAdSize(double width, double height,
    {double x = 0, double y = 0}) {
  return {
    'x': x,
    'y': y,
    'width': width,
    'height': height,
  };
}