BannerAdView constructor

const BannerAdView({
  1. Key? key,
  2. Color backgroundColor = Colors.transparent,
  3. AdSize size = AdSize.banner,
  4. EdgeInsetsGeometry? margin,
  5. EdgeInsetsGeometry? padding,
  6. required BannerAd? bannerAd,
})

Implementation

const BannerAdView({
  super.key,
  this.backgroundColor = Colors.transparent,
  this.size = AdSize.banner,
  this.margin,
  this.padding,
  required this.bannerAd,
});