startChunkedConversion method
Starts a chunked conversion.
The returned sink serves as input for the long-running conversion. The
given sink serves as output.
Implementation
@override
Sink<String> startChunkedConversion(Sink<T> sink) {
return _JsonlMappedDecoderSink<T>(
sink,
fromJson,
jsonCodec,
ignoreExceptions: ignoreExceptions,
onDone: onDone,
);
}