SimplePageIndicator constructor

const SimplePageIndicator({
  1. Key? key,
  2. required PageController controller,
  3. required int itemCount,
  4. Color indicatorColor = Colors.grey,
  5. double maxSize = 6,
  6. double space = 14.0,
  7. double minSize = 3,
})

Implementation

const SimplePageIndicator(
    {Key? key,
    required this.controller,
    required this.itemCount,
    this.indicatorColor = Colors.grey,
    this.maxSize = 6,
    this.space = 14.0,
    this.minSize = 3})
    : super(key: key);