packInt8 method

void packInt8(
  1. int num
)

Implementation

void packInt8(int num) {
  _bufferBuilder.append(num & 0xff);
}