writeAll method

void writeAll(
  1. Int8List buffer
)

Writes the bytes to the output. Throws TTransportError if there was an error writing data

Implementation

void writeAll(Int8List buffer) async {
  write(buffer, 0, buffer.length);
}