addByte method

void addByte(
  1. int byte
)

Add a byte to the buffer

Implementation

void addByte(int byte) {
  value.add(byte);
}