text property

String get text

The text to draw.

Implementation

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

Implementation

set text(String text) {
  if (_text == text) return;
  _text = text;
  _dirty = true;
}