writeBytes method

void writeBytes(
  1. List<int> bytes
)
inherited

Implementation

void writeBytes(List<int> bytes) {
  for (final val in bytes) {
    writeByte(val);
  }
}