DotsIndicator constructor
DotsIndicator({
- Key? key,
- PageController? controller,
- required int itemCount,
- ValueChanged<
int> ? onPageSelected, - Color? color,
- Color? increasedColor,
- required double dotSize,
- double? dotIncreaseSize,
- double? dotSpacing,
Implementation
DotsIndicator({
Key? key,
this.controller,
required this.itemCount,
this.onPageSelected,
this.color,
this.increasedColor,
required this.dotSize,
this.dotIncreaseSize,
this.dotSpacing,
}) : super(key: key, listenable: controller!);