The text to display
TextSpan get text => _textPainter.text;
set text(TextSpan value) { assert(value != null); if (_textPainter.text == value) return; _textPainter.text = value; _overflowShader = null; markNeedsLayout(); }