writeBytes method

void writeBytes(
  1. Iterable<int> bytes
)

Implementation

void writeBytes(Iterable<int> bytes) {
  for (int byte in bytes) {
    writeUnsignedByte(byte);
  }
}