setCrashReporting static method

void setCrashReporting([
  1. bool crashReporting = true
])

Enable automatics collection of crash reports.

Catches uncaught exceptions and reports them to Flurry if crashReporting enabled. Default value is set to true.

Implementation

static void setCrashReporting([bool crashReporting = true]) {
  flurryAgent?.setCrashReporting(crashReporting);
}