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