使用给定的选项使用 ZLibDecoder 构造函数将字节数组进行转换。
List<int> convert(List<int> bytes) { _BufferSink sink = new _BufferSink(); startChunkedConversion(sink) ..add(bytes) ..close(); return sink.builder.takeBytes(); }