writeUint8 method

dynamic writeUint8(
  1. int v
)

Implementation

writeUint8(int v) {
  data.add(v & 0xff);
}