readUInt32 method

int readUInt32()

Implementation

int readUInt32() =>
    (readByte() << 24) +
    (readByte() << 16) +
    (readByte() << 8) +
    readByte();