addByte method

void addByte(
  1. int byte
)

Implementation

void addByte(int byte) {
  _buffer.add(byte);
  _length++;
}