setText method

void setText(
  1. String text
)

Sets the text for all bound SuperText widgets.

Implementation

void setText(String text) {
  dispose();
  for (var superText in superTexts) {
    superText.text.value = text;
  }
}