RawZLibFilter抽象 接口

RawZLibFilter 类提供了对 zlib 的底层接口。

构造函数

RawZLibFilter.deflateFilter({bool gzip = false, int level = ZLibOption.defaultLevel, int windowBits = ZLibOption.defaultWindowBits, int memLevel = ZLibOption.defaultMemLevel, int strategy = ZLibOption.strategyDefault, List<int>? dictionary, bool raw = false})
返回一个 RawZLibFilter,其 processprocessed 方法压缩数据。
工厂
RawZLibFilter.inflateFilter({bool gzip = false, int windowBits = ZLibOption.defaultWindowBits, List<int>? dictionary, bool raw = false})
返回一个 RawZLibFilter,其 processprocessed 方法解压缩数据。
工厂

属性

hashCode int
此对象的哈希码。
无设置器继承
runtimeType Type
对象的运行时类型表示。
无设置器继承

方法

noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时调用。
继承
process(List<int> data, int start, int end) → void
处理数据块。
processed({bool flush = true, bool end = false}) List<int>?
获取处理过的数据块。
toString() String
此对象的字符串表示。
继承

运算符

operator ==(Object other) bool
相等运算符。
继承