append method

void append(
  1. String text
)

Appends text to the current value.

Implementation

void append(String text) {
  value += text;
}