BannerAdView constructor

BannerAdView({
  1. Key? key,
  2. String? unitId,
  3. double? width,
  4. double? height,
  5. AdCallback? onAdLoad,
  6. AdCallback? onAdShow,
  7. AdCallback? onAdClick,
  8. AdCallback? onAdClose,
  9. AdErrorCallback? onError,
})

Implementation

BannerAdView(
    {Key? key,
    this.unitId,
    this.width,
    this.height,
    this.onAdLoad,
    this.onAdShow,
    this.onAdClick,
    this.onAdClose,
    this.onError})
    : super(key: key);