class
JsonDecoder

This class parses JSON strings and builds the corresponding objects.

Extends

Constructors

JsonDecoder([dynamic reviver(key, value)])
const
Constructs a new JsonDecoder.

Methods

convert(String input) → dynamic
Converts the given JSON-string input to its corresponding object.
startChunkedConversion(Sink<Object> sink) → StringConversionSink
Starts a conversion from a chunked JSON string to its corresponding object.
bind(Stream<String> stream) → Stream<Object>
Transform the incoming [stream]'s events.
fuse(Converter<Object> other) → Converter<String>
inherited
Fuses this with other.
fuse(Converter<Object> other) → Converter<String>
inherited
Fuses this with other.