writeByte method

void writeByte(
  1. int value
)

Implementation

void writeByte(int value) {
  _builder.addByte(value & 0xFF);
}