The (potentially styled) text to paint.
TextSpan get text => _text;
set text(TextSpan value) { assert(value == null || value.debugAssertIsValid()); if (_text == value) return; _text = value; _paragraph = null; _needsLayout = true; }