props property

IMap<String, dynamic> props
final

The properties added to the exception, if any. They are an immutable-map of type IMap, of key-value pairs. To read the properties, use the [] operator, like this:

var value = exception.props['key'];

If the key does not exist, it will return null.

Implementation

final IMap<String, dynamic> props;