startChunkedConversion method
Starts a conversion from a chunked JSON string to its corresponding object.
The output sink receives exactly one decoded element through add.
Implementation
@override
StringConversionSink startChunkedConversion(Sink<Object?> sink) {
return _JsonStringDecoderSink(_reviver, sink);
}