RawZLibFilter.inflateFilter 构造函数

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

返回一个 RawZLibFilter 对象,其 processprocessed 方法可以解压缩数据。

实现

factory RawZLibFilter.inflateFilter({
  bool gzip = false,
  int windowBits = ZLibOption.defaultWindowBits,
  List<int>? dictionary,
  bool raw = false,
}) {
  return _makeZLibInflateFilter(gzip, windowBits, dictionary, raw);
}