emit method

void emit(
  1. String str
)

Appends str to the output buffer.

Implementation

void emit(String str) {
  _buff.write(str);
}