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. ValueChanged<int>? onTap,
})

Implementation

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