write method

void write(
  1. String text
)

Implementation

void write(String text) {
  writeBytes(Uint8List.fromList(utf8.encode(text)));
}