BaseBannerView constructor

const BaseBannerView({
  1. Key? key,
  2. required List<String> urls,
  3. double? width,
  4. double? height,
  5. int? playDelay,
  6. bool showPagination = true,
  7. BaseSwiperPlugin? pagination,
  8. required Widget placeholder,
  9. ValueChanged<int>? onTap,
})

Implementation

const BaseBannerView(
    {super.key,
    required this.urls,
    this.width,
    this.height,
    this.playDelay,
    this.showPagination = true,
    this.pagination,
    required this.placeholder,
    this.onTap});