DotsIndicator constructor

DotsIndicator({
  1. Key? key,
  2. PageController? controller,
  3. required int itemCount,
  4. ValueChanged<int>? onPageSelected,
  5. Color? color,
  6. Color? increasedColor,
  7. required double dotSize,
  8. double? dotIncreaseSize,
  9. 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!);