addText method

void addText(
  1. String text
)

Implementation

void addText(String text) {
  textSpans.add(TextSpan(
    text: text,
    style: textStyle,
  ));
}