Read a 32-bit word from the stream.
@override int readUint32() { if (isEOS) { return 0; } final b = _file.readUint32(_fileOffset + _position, _fileSize); _position += 4; return b; }