RawZLibFilter.inflateFilter constructor
Returns a RawZLibFilter whose process and processed methods decompress data.
Implementation
factory RawZLibFilter.inflateFilter({
bool gzip = false,
int windowBits = ZLibOption.defaultWindowBits,
List<int>? dictionary,
bool raw = false,
}) {
return _makeZLibInflateFilter(gzip, windowBits, dictionary, raw);
}