exception property

  1. @optional
RemoteObject? get exception

Exception object if available.

Implementation

@optional
RemoteObject? get exception => json['exception'] == null
    ? null
    : RemoteObject(json['exception'] as Map<String, dynamic>);