text property

String get text

Implementation

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

Implementation

set text(String value) {
  if (_text != value) {
    _text = value;
    notifyListeners();
  }
}