Dart Documentationdistributed_dartJsonCyclicError

JsonCyclicError class

class JsonCyclicError extends Error {
 final String message;
 JsonCyclicError([this.message = ""]);
 String toString() => "Cyclic error!: $message";
}

Extends

Error > JsonCyclicError

Constructors

new JsonCyclicError([String message = ""]) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
JsonCyclicError([this.message = ""]);

Properties

final String message #

final String message

final StackTrace stackTrace #

inherited from Error
external StackTrace get stackTrace;

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "Cyclic error!: $message";