writeUnsignedByte method

void writeUnsignedByte(
  1. int value
)

Implementation

void writeUnsignedByte(int value) {
  _ensureCapacity(1);
  _byteBuffer.buffer.asByteData().setUint8(_position, value);
  _position++;
}