CustomLinearProgressIndicator constructor
const
CustomLinearProgressIndicator({})
Creates a linear progress indicator.
Implementation
const CustomLinearProgressIndicator({
Key? key,
double? value,
this.secondaryValue,
Color? backgroundColor,
Color? color,
Animation<Color?>? valueColor,
this.secondaryColor,
this.secondaryValueColor,
this.minHeight,
this.radius,
String? semanticsLabel,
String? semanticsValue,
}) : assert(minHeight == null || minHeight > 0),
super(
key: key,
value: value,
backgroundColor: backgroundColor,
color: color,
valueColor: valueColor,
semanticsLabel: semanticsLabel,
semanticsValue: semanticsValue,
);