operator []= method Null safety
Set a byte in the buffer relative to the current read position.
Implementation
operator []=(int index, int value) => buffer[offset + index] = value;
Set a byte in the buffer relative to the current read position.
operator []=(int index, int value) => buffer[offset + index] = value;