This class converts JSON objects to strings.

Inheritance
Implements

Constructors

JsonEncoder([dynamic toEncodable(object) ])

Creates a JSON encoder.

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

Creates a JSON encoder that creates multi-line JSON.

const

Properties

indent String

The string used for indention.

final
hashCode int

The hash code for this object.

read-only, inherited
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<T>(Converter<String, T> other) Converter<Object, T>

Fuses this with other.

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

Starts a chunked conversion.

noSuchMethod(Invocation invocation) → dynamic

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

inherited
toString() String

Returns a string representation of this object.

inherited