DotsIndicator constructor

DotsIndicator({
  1. required int dotsCount,
  2. required PageController pageController,
  3. Color activeColor = Colors.white,
  4. Color inactiveColor = Colors.grey,
  5. double dotSize = 8.0,
  6. double spacing = 8.0,
})

Implementation

DotsIndicator({
  required this.dotsCount,
  required this.pageController,
  this.activeColor = Colors.white,
  this.inactiveColor = Colors.grey,
  this.dotSize = 8.0,
  this.spacing = 8.0,
});