exceptions property
Implementation
@internal
List<SentryException>? get exceptions =>
_exceptions != null ? List.unmodifiable(_exceptions!) : null;
Implementation
@internal
set exceptions(List<SentryException>? value) {
_exceptions = value;
}