This class parses JSON strings and builds the corresponding objects.
Constructors
- JsonDecoder([dynamic reviver(key, value)])
-
constConstructs a new JsonDecoder.
Methods
-
bind(
Stream<String> stream) → Stream<Object> -
Transform the incoming
stream
's events. -
convert(
String input) → dynamic -
Converts the given JSON-string
input
to its corresponding object. -
fuse(
Converter<Object> other) → Converter<String> -
inheritedFuses
this
withother
. -
startChunkedConversion(
Sink<Object> sink) → StringConversionSink - Starts a conversion from a chunked JSON string to its corresponding object.