writeByte method
Write a byte to the end of the buffer.
Implementation
void writeByte(int value) {
if (length == _buffer.length) {
_expandBuffer();
}
_buffer[length++] = value & 0xff;
}
Write a byte to the end of the buffer.
void writeByte(int value) {
if (length == _buffer.length) {
_expandBuffer();
}
_buffer[length++] = value & 0xff;
}