writeUint8 method

void writeUint8(
  1. int value
)

Implementation

void writeUint8(int value) {
  _builder.addByte(value);
}