CarouselDotIndicator constructor
const
CarouselDotIndicator({
- Key? key,
- required int itemCount,
- required CarouselController controller,
- Duration speed = const Duration(milliseconds: 200),
- Curve curve = Curves.easeInOut,
Creates a dot indicator for the carousel.
Implementation
const CarouselDotIndicator({
super.key,
required this.itemCount,
required this.controller,
this.speed = const Duration(milliseconds: 200),
this.curve = Curves.easeInOut,
});