RawZLibFilter.inflateFilter 构造函数

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

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

实现

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