readInt16 method

int readInt16()

Fetch a int64 from the bytes list

Implementation

int readInt16() {
  final start = ip;
  ip += 2;
  return bytes.buffer.asByteData().getInt16(start);
}