putByte method
Writes the given byte.
@param byte The byte to be written
Implementation
void putByte(int byte) {
_checkByte(byte);
_bytes.add(byte);
_position++;
}
Writes the given byte.
@param byte The byte to be written
void putByte(int byte) {
_checkByte(byte);
_bytes.add(byte);
_position++;
}