value property
T?
get
value
The current value of the control.
Implementation
T? get value => _value;
set
value
(T? value)
Sets the value to the control
Implementation
set value(T? value) {
updateValue(value);
}