pushUint8 method

void pushUint8(
  1. int value
)

Implementation

void pushUint8(int value) {
  _ensureCapacity(1);
  _byteData.setUint8(_writeIndex, value);
  _writeIndex++;
}