LinearIndicator constructor

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

Implementation

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