sendNonFatalException method
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);
}