textSelection property

TextSelection textSelection

The currently selected text (or the position of the cursor) within value if this node represents a text field.

Implementation

TextSelection get textSelection => _textSelection;
void textSelection= (TextSelection value)

Implementation

set textSelection(TextSelection value) {
  assert(value != null);
  _textSelection = value;
  _hasBeenAnnotated = true;
}