reportHandledCrash static method

Future<void> reportHandledCrash(
  1. Object exception, [
  2. StackTrace? stack
])

Reports a handled crash to you dashboard Object exception StackTrace stack

Implementation

static Future<void> reportHandledCrash(
  Object exception, [
  StackTrace? stack,
]) async {
  await _sendCrash(exception, stack ?? StackTrace.current, true);
}