startChunkedConversion method
Start a chunked conversion.
Only one object can be passed into the returned sink.
The argument sink will receive byte lists in sizes depending on the
bufferSize passed to the constructor when creating this encoder.
Implementation
@override
ChunkedConversionSink<Object?> startChunkedConversion(Sink<List<int>> sink) => jsonUtf8Encoder.startChunkedConversion(sink);