MinProgress constructor
const
MinProgress({})
Implementation
const MinProgress({
super.key,
this.value,
this.variant = MinProgressVariant.linear,
this.size,
this.strokeWidth,
this.color,
this.trackColor,
this.backgroundColor,
}) : assert(
value == null || (value >= 0.0 && value <= 1.0),
'value must be between 0.0 and 1.0, or null for indeterminate',
);