writeSByte method

void writeSByte(
  1. int value
)

Implementation

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