value property

T get value

Returns the value of the property.

Implementation

T get value => _value;
set value (T newValue)

Sets the value of the property.

Implementation

set value(T newValue) {
  if (newValue == _value) return;
  _value = newValue;
  changed();
}