Gets the text.
String get text => _text;
Sets the text.
set text(String val) { if (_text == val) return; _text = val; markNeedsLayout(); }