text property
The current string the user is editing.
Implementation
String get text => value.text;
Corresponding to TextEditingController.text
Implementation
@override
set text(String newText) {
if (super.text != newText) {
super.text = newText;
}
}