DotsIndicator constructor

const DotsIndicator({
  1. Key? key,
  2. required PageController controller,
  3. int? itemCount,
  4. ValueChanged<int>? onPageSelected,
  5. Color? color,
})

Implementation

const DotsIndicator({
  super.key,
  required this.controller,
  this.itemCount,
  this.onPageSelected,
  this.color,
}) : super(listenable: controller);