logUnhandledException static method

Future<void> logUnhandledException(
  1. dynamic exception, [
  2. dynamic stackTrace
])

Implementation

static Future<void> logUnhandledException(dynamic exception,
    [dynamic stackTrace]) async {
  await _exceptionHandler?.logException(exception, false, stackTrace);
}