write method

void write(
  1. String text
)

Add text with indentation.

Implementation

void write(String text) {
  _sink.write(str() + text);
}