RenderLinearProgressIndicator constructor
RenderLinearProgressIndicator({})
Implementation
RenderLinearProgressIndicator({
required double? value,
required double animValue,
required Color backgroundColor,
required Color color,
int? indicatorWidth,
}) : _value = value ?? 0.0,
_animValue = animValue,
_backgroundColor = backgroundColor,
_color = color,
_indicatorWidth = indicatorWidth;