addByte method

void addByte(
  1. int byte
)

Add a single byte to the buffer.

Implementation

void addByte(int byte) {
  add([byte]);
}