The current text being edited.
String get text => _model.value;
Sets the text and notifies listeners.
set text(String value) { if (_model.value == value) return; _model.setText(value); notifyListeners(); }