text property

String text

The text string value.

Implementation

String get text => _text;
void text=(String value)

Change the _text field value. textChanged will be invoked only if the field's value has changed.

Implementation

set text(String value) {
  if (_text == value) {
    return;
  }
  String from = _text;
  _text = value;
  if (hasValidated) {
    textChanged(from, value);
  }
}