PdaBannerView constructor

const PdaBannerView({
  1. Key? key,
  2. required PdaAd pdaAd,
  3. double? width,
  4. double? height,
  5. dynamic onAdClicked(
    1. Map<String, dynamic>
    )?,
  6. dynamic onAdLoaded(
    1. Map<String, dynamic>
    )?,
  7. Duration autoSlideInterval = const Duration(seconds: 3),
  8. bool showIndicators = true,
  9. String? adLabelText,
  10. Alignment? adLabelAlignment,
  11. Widget? customBadgeView,
})

Implementation

const PdaBannerView({
  super.key,
  required this.pdaAd,
  this.width,
  this.height,
  this.onAdClicked,
  this.onAdLoaded,
  this.autoSlideInterval = const Duration(seconds: 3),
  this.showIndicators = true,
  this.adLabelText,
  this.adLabelAlignment,
  this.customBadgeView,
});