BadLinearCarousel constructor

const BadLinearCarousel({
  1. Key? key,
  2. ValueChanged<int>? onPageChanged,
  3. VoidCallback? onSwipeOut,
  4. IndicatorBuilder? indicatorBuilder,
  5. required List<Widget> pages,
})

Implementation

const BadLinearCarousel({
  super.key,
  super.onPageChanged,
  this.onSwipeOut,
  super.indicatorBuilder,
  required super.pages,
});