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({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
相等操作符。
继承