writeBytes method

void writeBytes(
  1. Uint8List data
)

Implementation

void writeBytes(Uint8List data) {
  write(utf8.decode(data, allowMalformed: true));
}