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