text property
The text to display.
Implementation
TextSpan get text => _textPainter.text;
Implementation
set text(TextSpan value) {
if (_textPainter.text == value)
return;
_textPainter.text = value;
markNeedsTextLayout();
markNeedsSemanticsUpdate();
}