putAt method

void putAt(
  1. int index,
  2. int byte
)

Implementation

void putAt(int index, int byte) {
  if (index < 0 || index >= _bytes.length) throw RangeError("index $index out of bounds");
  _bytes[index] = byte & 0xFF;
}