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