BasicIndicator constructor

BasicIndicator({
  1. Key? key,
  2. required int count,
  3. required double position,
  4. required int index,
  5. FlIndicatorType layout = FlIndicatorType.scale,
  6. double size = 8,
  7. Color? color = UCS.background,
  8. Color? activeColor,
})

Implementation

BasicIndicator(
    {super.key,
    required super.count,
    required super.position,
    required super.index,
    super.layout = FlIndicatorType.scale,
    super.size = 8,
    super.color = UCS.background,
    Color? activeColor})
    : super(activeColor: activeColor ?? GlobalConfig().currentColor);