text property

String text
inherited

The current string the user is editing.

Implementation

String get text => value.text;
  1. @override
void text=(String newText)
override

Corresponding to TextEditingController.text

Implementation

@override
set text(String newText) {
  if (super.text != newText) {
    super.text = newText;
  }
}