writeByte method

void writeByte(
  1. int byte
)

Writes a single byte to the buffer.

Implementation

void writeByte(int byte) {
  _data.setInt8(_writePos++, byte);
}