add method

void add(
  1. String text
)

Just adds text.

Implementation

void add(String text) {
  _sink.write(text);
}