readInt16 method
Fetch a int64 from the bytes list
Implementation
int readInt16() {
final start = ip;
ip += 2;
return bytes.buffer.asByteData().getInt16(start);
}
Fetch a int64 from the bytes list
int readInt16() {
final start = ip;
ip += 2;
return bytes.buffer.asByteData().getInt16(start);
}