DotsIndicatorWidget constructor

DotsIndicatorWidget({
  1. Key? key,
  2. PageController? controller,
  3. int? itemCount,
  4. ValueChanged<int>? onPageSelected,
  5. Color? color,
  6. double? dotSize,
  7. double? dotIncreaseSize,
  8. double? dotSpacing,
})

Implementation

DotsIndicatorWidget({
  Key? key,
  this.controller,
  this.itemCount,
  this.onPageSelected,
  this.color,
  this.dotSize,
  this.dotIncreaseSize,
  this.dotSpacing,
}) : super(key: key, listenable: controller ?? PageController());