The text label displayed on the button.
String get text => _text;
Sets the text label.
set text(String v) { if (_text == v) return; _text = v; _invalidateCache(); markNeedsLayout(); }