value property

T? value

The current value of the control.

Implementation

T? get value => _value;
void value=(T? value)

Sets the value to the control

Implementation

set value(T? value) {
  updateValue(value);
}