writeByte method

void writeByte(
  1. int value
)

Writes a byte to the byte stream.

Implementation

void writeByte(int value) {
  _validateBuffer(1);
  _getData().setInt8(_position++, value);
}