FlIndicator constructor

const FlIndicator({
  1. Key? key,
  2. required int count,
  3. double size = 20.0,
  4. double space = 5.0,
  5. double activeSize = 20.0,
  6. Color? color,
  7. FlIndicatorType layout = FlIndicatorType.slide,
  8. Color? activeColor,
  9. double scale = 0.6,
  10. double dropHeight = 20.0,
  11. required int index,
  12. required double position,
})

Implementation

const FlIndicator(
    {super.key,
    required this.count,
    this.size = 20.0,
    this.space = 5.0,
    this.activeSize = 20.0,
    this.color,
    this.layout = FlIndicatorType.slide,
    this.activeColor,
    this.scale = 0.6,
    this.dropHeight = 20.0,
    required this.index,
    required this.position});