YodoBannerAd constructor

const YodoBannerAd({
  1. Key? key,
  2. BannerSize size = BannerSize.banner,
  3. void onLoad()?,
  4. void onOpen()?,
  5. void onClosed()?,
  6. void onLoadFailed(
    1. String errorMessage
    )?,
  7. void onOpenFailed(
    1. String errorMessage
    )?,
})

This widget is used to contain Banner Ads.

Implementation

const YodoBannerAd({
  Key? key,
  this.size = BannerSize.banner,
  this.onLoad,
  this.onOpen,
  this.onClosed,
  this.onLoadFailed,
  this.onOpenFailed,
}) : super(key: key);