PageIndicator constructor

const PageIndicator({
  1. Key? key,
  2. required int index,
  3. required int length,
  4. required Color activeColor,
  5. required Color dotColor,
})

Implementation

const PageIndicator({
  super.key,
  required this.index,
  required this.length,
  required this.activeColor,
  required this.dotColor,
});