textEditingValue property
override
Gets the current text input.
Implementation
@override
TextEditingValue get textEditingValue => _value;
override
Sets the current text input (replaces the whole line).
Implementation
@override
set textEditingValue(TextEditingValue value) {
_selectionOverlay?.update(value);
_formatAndSetValue(value);
}