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