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