logHandledException static method

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

Implementation

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