putByte method

void putByte(
  1. int byte
)

Writes the given byte.

@param byte The byte to be written

Implementation

void putByte(int byte) {
  _checkByte(byte);
  _bytes.add(byte);
  _position++;
}