value property

num 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.

MDN Reference

Implementation

_i2.num get value => _i4.getProperty(
      this,
      'value',
    );
void value=(num value)

Implementation

set value(_i2.num value) {
  _i4.setProperty(
    this,
    'value',
    value,
  );
}