text property
String
get
text
Implementation
String get text => _text;
set
text
(String value)
Implementation
set text(String value) {
if (_text == value) return;
_text = value;
notifyListeners();
}