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