text property
String
get
text
Implementation
String get text => _text;
set
text
(String value)
Implementation
set text(String value) {
if (_text != value) {
_text = value;
_cursorPosition = _cursorPosition.clamp(0, _text.length);
clearSelection();
notifyListeners();
}
}