sendNonFatalException method

Future<void> sendNonFatalException(
  1. dynamic exception,
  2. StackTrace? stack
)

Record a non-fatal exception. Async exceptions should use this methods

Implementation

Future<void> sendNonFatalException(dynamic exception, StackTrace? stack) async {
  sendException(exception, stack, isFatal: false);
}