toString method
- @override
override
Returns a string representation of this object.
Implementation
@override
String toString() => <String>[
'CheckedFromJsonException',
if (_className != null) 'Could not create `$_className`.',
if (key != null) 'There is a problem with "$key".',
if (message != null) message,
if (message == null && innerError != null) innerError.toString(),
].join('\n');