StandardIndicator constructor

StandardIndicator({
  1. required double width,
  2. required Color color,
  3. double bottom = 0,
  4. double height = 3,
  5. BorderRadius? radius,
})

Implementation

StandardIndicator(
    {required this.width,
    required this.color,
    this.bottom = 0,
    this.height = 3,
    this.radius})
    : super(bottom: bottom, color: color, height: height, radius: radius);