text property

String get text

Implementation

String get text => _text;
set text (String v)

Implementation

set text(String v) {
  _text = v;
  _cursorIndex = v.length.clamp(0, v.length);
  _selectionAnchor = null;
}