unhandled property

bool unhandled

Whether the event was a crash (i.e. unhandled) or handled error in which the system continued running.

Unhandled errors count towards your stability score. If you don't want certain errors to count towards your stability score, you can alter this property through a BugsnagOnErrorCallback

Implementation

bool get unhandled => _unhandled;
void unhandled=(bool unhandled)

Implementation

set unhandled(bool unhandled) {
  _unhandled = unhandled;
  _severityReason.unhandledOverridden =
      (_unhandled != _originalUnhandled) ? true : null;
}