RecursiveToString class abstract

Class with a recursive/complex toString. Use this interface to avoid StackOverflowError on complex toString.

Implementers

Constructors

RecursiveToString()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString({Set<Object>? processedObjects}) String
A string representation of this object.
override
toStringSimple() String

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

processedObjects(Set<Object>? processedObjects, Object? o) Set<Object>?
recursiveIterableToString(Set<Object>? processedObjects, Iterable o, String? toStr(Set<Object> processedObjects, Object? o)) List<String>
recursiveToString(Set<Object>? processedObjects, Object? o, String? str()) String?