RawZLibFilter.inflateFilter constructor

RawZLibFilter.inflateFilter({
  1. bool gzip = false,
  2. int windowBits = ZLibOption.defaultWindowBits,
  3. List<int>? dictionary,
  4. bool raw = false,
})

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);
}