DotIndicator constructor

const DotIndicator({
  1. Key? key,
  2. double? size = 10,
  3. Color? selectedColor = Colors.blue,
  4. int? itemCount,
  5. int? currentIndex,
  6. Color? unselectedColor,
})

Implementation

const DotIndicator({
  Key? key,
  this.size = 10,
  this.selectedColor = Colors.blue,
  this.itemCount,
  this.currentIndex,
  this.unselectedColor,
}) : super(key: key);