write method

void write(
  1. String text
)

Implementation

void write(String text) {
  _buffer.write(text);
  notifyListeners();
}