pushUInt8 method

void pushUInt8(
  1. int val
)

Append a single UInt8 value to the byte sequence in the buffer.

Implementation

void pushUInt8(int val) {
  pushBytes([val]);
}