RawZLibFilter.inflateFilter 构造函数
返回一个 RawZLibFilter,其 process 和 processed 方法可以解压缩数据。
实现
factory RawZLibFilter.inflateFilter({
int windowBits = ZLibOption.defaultWindowBits,
List<int>? dictionary,
bool raw = false,
}) {
return _makeZLibInflateFilter(windowBits, dictionary, raw);
}