write method

int write(
  1. List<int> list, [
  2. int offset = 0,
  3. int? length
])

Writes the int at list as bytes, respecting offset and length parameters.

Implementation

int write(List<int> list, [int offset = 0, int? length]) =>
    bytesIO.write(list, offset, length);