value property

T value

Retrieves the current value of the reactive variable.

Implementation

T get value => this._value;
void value=(T value)

Updates the value of the reactive variable to value.

Implementation

set value(T value) {
  this._value = value;
  refresh();
}