PageIndicator constructor

PageIndicator({
  1. int? currentIndex,
  2. int? pageCount,
  3. Color? activeDotColor,
  4. VoidCallback? onTap,
  5. Color? inactiveDotColor,
  6. IndicatorType? type,
})

Implementation

PageIndicator({
  this.currentIndex,
  this.pageCount,
  this.activeDotColor,
  this.onTap,
  this.inactiveDotColor,
  this.type,
});