readUInt24 method

int readUInt24()

Implementation

int readUInt24() =>
    (readByte() << 16) + (readByte() << 8) + readByte();