PageIndicator constructor

const PageIndicator({
  1. required int itemCount,
  2. required int currentPage,
  3. required Duration animationDuration,
  4. Key? key,
  5. Color? activeColor,
  6. Color? inactiveColor,
})

Implementation

const PageIndicator({
  required this.itemCount,
  required this.currentPage,
  required this.animationDuration,
  super.key,
  this.activeColor,
  this.inactiveColor,
});