appendInt1 method

void appendInt1(
  1. int value
)

Implementation

void appendInt1(int value) {
  _bufferPosition += 1;
  _ensureBuffer();
  _bufferData.add(value & 0xff);
}