textEditingValue property

TextEditingValue textEditingValue

Returns the textEditingValue associated with this controller.

Implementation

TextEditingValue get textEditingValue => _textFieldController.value;
void textEditingValue=(TextEditingValue value)

Implementation

set textEditingValue(TextEditingValue value) {
  _textFieldController.value = value;
}