W3cubDocs

/Dart 2

JsonCodec class

A JsonCodec encodes JSON objects to strings and decodes strings to JSON objects.

Examples:

var encoded = json.encode([1, 2, { "a": null }]);
var decoded = json.decode('["foo", { "bar": 499 }]');
Inheritance

Constructors

JsonCodec({dynamic reviver(Object key, Object value), dynamic toEncodable(dynamic object) })
const
Creates a JsonCodec with the given reviver and encoding function. [...]
JsonCodec.withReviver(dynamic reviver(Object key, Object value))
Creates a JsonCodec with the given reviver. [...]

Properties

decoderJsonDecoder
read-only, override
Returns the decoder of this, converting from T to S. [...]
encoderJsonEncoder
read-only, override
Returns the encoder from S to T. [...]
hashCodeint
read-only, inherited
The hash code for this object. [...]
invertedCodec<String, Object>
read-only, inherited
Inverts this. [...]
runtimeTypeType
read-only, inherited
A representation of the runtime type of the object.

Methods

decode(String source, { dynamic reviver(Object key, Object value) }) → dynamic
override
Parses the string and returns the resulting Json object. [...]
encode(Object value, { dynamic toEncodable(dynamic object) }) → String
override
Converts value to a JSON string. [...]
fuse<R>(Codec<String, R> other) → Codec<Object, R>
inherited
Fuses this with other. [...]
noSuchMethod(Invocation invocation) → dynamic
inherited
Invoked when a non-existent method or property is accessed. [...]
toString() → String
inherited
Returns a string representation of this object.

Operators

operator ==(dynamic other) → bool
inherited
The equality operator. [...]

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-convert/JsonCodec-class.html