text method

VxTextBuilder text(
  1. String text
)

The text to display.

This will be null if a textSpan is provided instead.

Implementation

VxTextBuilder text(String text) {
  _text = text;
  return this;
}