WaveCarouselEntry constructor

const WaveCarouselEntry({
  1. Key? key,
  2. Widget? backgroundWidget,
  3. required List<WaveCarouselItem> items,
  4. required Widget start,
  5. int autoSwipeInterval = 3000,
  6. Widget? bottomGradient,
  7. Color? indicatorColor = Colors.grey,
  8. Color? indicatorActiveColor = Colors.white,
  9. double bottomStroke = 0,
  10. Color bottomStrokeColor = Colors.black,
  11. double titleSpacing = 8.0,
})

Implementation

const WaveCarouselEntry({
  super.key,
  required this.logo,
  this.backgroundWidget,
  required this.items,
  // required this.onStart,
  required this.start,
  this.autoSwipeInterval = 3000,
  this.bottomGradient,
  this.indicatorColor = Colors.grey,
  this.indicatorActiveColor = Colors.white,
  this.bottomStroke = 0,
  this.bottomStrokeColor = Colors.black,
  this.titleSpacing = 8.0,
});