value property
num
get
value
Sets or gets the current value of a progress element. The value must be a non-negative number between 0 and the max value.
Implementation
_i2.num get value => _i4.getProperty(
this,
'value',
);
set
value
(num value)
Implementation
set value(_i2.num value) {
_i4.setProperty(
this,
'value',
value,
);
}