startChunkedConversion method
Start a chunked conversion.
Accepts any Sink<List<int>>
, but prefers a ByteConversionSink,
and converts any other sink to a ByteConversionSink before
using it.
Implementation
@override
ByteConversionSink startChunkedConversion(Sink<List<int>> sink) => zLibDecoder.startChunkedConversion(sink);