PageIndicator constructor

const PageIndicator({
  1. Key? key,
  2. Color indicatorBackColor = Colors.white,
  3. Color indicatorColor = Colors.grey,
  4. required PageController controller,
  5. required int length,
  6. required int realPage,
  7. double indicatorSpace = 4.0,
  8. double indicatorWidth = 6,
})

Implementation

const PageIndicator(
    {Key? key,
    this.indicatorBackColor = Colors.white,
    this.indicatorColor = Colors.grey,
    required this.controller,
    required this.length,
    required this.realPage,
    this.indicatorSpace = 4.0,
    this.indicatorWidth = 6})
    : super(key: key);