Dart SDK
dart:convert
JsonDecoder
class
JsonDecoder
Constructors
Methods
Constructors
JsonDecoder
Methods
convert
startChunkedConversion
bind
fuse
fuse
This class parses JSON strings and builds the corresponding objects.
Extends
Object
Converter
<
String
,
Object
>
JsonDecoder
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.