text property

String text

Implementation

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

Implementation

set text(String text) {
  if (_text != text) {
    dirty = true;
    _text = text;
  }
}