readUint24 method

int readUint24()

Returns a 24-bit integer, read from the buffer.

Implementation

int readUint24() =>
    _list[_readPos++] + (_list[_readPos++] << 8) + (_list[_readPos++] << 16);