writeUint8 method

void writeUint8(
  1. int x
)

Writes a Uint8 to the buffer.

Implementation

void writeUint8(int x) => _bytes.addByte(x);