checkForUnreportedCrashes method

Future<void> checkForUnreportedCrashes(
  1. BuildContext context
)

Check for unreported crashes (call this in your app's main widget)

Implementation

Future<void> checkForUnreportedCrashes(BuildContext context) async {
  await CrashHandlerService.checkForUnreportedCrashes(this, context);
}