writeUint16 method

dynamic writeUint16(
  1. int v
)

Implementation

writeUint16(int v) {
  data.add((v >> 8) & 0xff);
  data.add(v & 0xff);
}