value property
double?
get
value
The progress value (0.0–1.0), or null for indeterminate.
Implementation
double? get value => _value;
set
value
(double? v)
Sets the progress value.
Implementation
set value(double? v) {
if (_value == v) return;
_value = v;
markNeedsPaint();
}