setCustomCrashReportingEndpoint static method

Future<void> setCustomCrashReportingEndpoint(
  1. String? url
)

Allows the user to set a custom endpoint for Crash Reporting

url String with the URL to be used

Set to null to use default.

Implementation

static Future<void> setCustomCrashReportingEndpoint(String? url) async {
  Settings.crashReportingEndpoint =
      url ?? Settings.kDefaultCrashReportingEndpoint;
}