writeByte method

int writeByte(
  1. int byte
)

Implementation

int writeByte(int byte) {
  data.addByte(byte);
  return 1;
}