value property
TextEditingValue
get
value
Gets the current editing value.
Implementation
TextEditingValue get value => _value;
set
value
(TextEditingValue newValue)
Sets the editing value.
Implementation
set value(TextEditingValue newValue) {
if (_value != newValue) {
_value = newValue;
_notify();
}
}