text property

String get text

Implementation

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

Implementation

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