Error thrown by JSON serialization if an object cannot be serialized.

The unsupportedObject field holds that object that failed to be serialized.

If an object isn't directly serializable, the serializer calls the toJson method on the object. If that call fails, the error will be stored in the cause field. If the call returns an object that isn't directly serializable, the cause is null.

Inheritance
Implemented by

Constructors

JsonUnsupportedObjectError(unsupportedObject, {cause})

Properties

cause → dynamic

The exception thrown when trying to convert the object.

read-only
hashCode int

Get a hash code for this object.

read-only, inherited
runtimeType Type

A representation of the runtime type of the object.

read-only, inherited
stackTrace StackTrace

read-only, inherited
unsupportedObject → dynamic

The object that could not be serialized.

read-only

Operators

operator ==(other) bool

The equality operator.

inherited

Methods

noSuchMethod(Invocation invocation) → dynamic

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

inherited
toString() String

Returns a string representation of this object.