append method

void append(
  1. String text
)

Appends text to the current string.

Implementation

void append(String text) => value += text;