textEditingValue property

TextEditingValue textEditingValue
override

Gets the current text input.

Implementation

@override
TextEditingValue get textEditingValue => _value;
void textEditingValue= (TextEditingValue value)
override

Sets the current text input (replaces the whole line).

Implementation

@override
set textEditingValue(TextEditingValue value) {
  _selectionOverlay?.update(value);
  _formatAndSetValue(value);
}