This class converts JSON objects to strings.

Inheritance
Implements

Constructors

JsonEncoder([dynamic toEncodable(nonSerializable)])

Creates a JSON encoder.

const
JsonEncoder.withIndent(String indent, [dynamic toEncodable(nonSerializable)])

Creates a JSON encoder that creates multi-line JSON.

const

Properties

hashCode int

Get a hash code for this object.

read-only, inherited
indent String

The string used for indention.

read-only
runtimeType Type

A representation of the runtime type of the object.

read-only, inherited

Operators

operator ==(other) bool

The equality operator.

inherited

Methods

bind(Stream<Object> stream) Stream<String>

Transform the incoming stream's events.

convert(Object object) String

Converts object to a JSON String.

fuse(Converter<String, dynamic> other) Converter<Object, dynamic>

Fuses this with other.

noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
startChunkedConversion(Sink<String> sink) ChunkedConversionSink<Object>

Starts a chunked conversion.

toString() String

Returns a string representation of this object.

inherited