AnchoredAdaptiveBannerAdSize constructor

AnchoredAdaptiveBannerAdSize(
  1. Orientation? orientation, {
  2. required int width,
  3. required int height,
})

Default constructor for AnchoredAdaptiveBannerAdSize.

This constructor should only be used internally.

See: AdSize.getAnchoredAdaptiveBannerAdSize.

Implementation

AnchoredAdaptiveBannerAdSize(
  this.orientation, {
  required int width,
  required int height,
}) : super(width: width, height: height);