exceptions property

  1. @internal
List<SentryException>? get exceptions

Implementation

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

Implementation

@internal
set exceptions(List<SentryException>? value) {
  _exceptions = value;
}