append method

void append(
  1. String value
)

Implementation

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