SubZeroCarousel constructor

const SubZeroCarousel({
  1. Key? key,
  2. required List<Widget> children,
  3. SubZeroCarouselConfig config = const SubZeroCarouselConfig(),
  4. ValueChanged<int>? onPageChanged,
  5. int initialPage = 0,
  6. SubZeroCarouselController? controller,
})

Implementation

const SubZeroCarousel({
  super.key,
  required this.children,
  this.config = const SubZeroCarouselConfig(),
  this.onPageChanged,
  this.initialPage = 0,
  this.controller,
});