readUint24 method
Returns a 24-bit integer, read from the buffer.
Implementation
int readUint24() =>
_list[_readPos++] + (_list[_readPos++] << 8) + (_list[_readPos++] << 16);
Returns a 24-bit integer, read from the buffer.
int readUint24() =>
_list[_readPos++] + (_list[_readPos++] << 8) + (_list[_readPos++] << 16);