Config constructor

Config({
  1. String? key,
  2. String? targetUrl,
  3. String? projectId,
  4. String? referer,
  5. ErrorContext? context,
  6. String? service,
  7. String? version,
  8. bool disabled = false,
  9. bool reportUncaughtExceptions = true,
  10. Function? customReportingFunction,
})

Implementation

Config(
    {this.key,
    this.targetUrl,
    this.projectId,
    this.referer,
    this.context,
    this.service,
    this.version,
    this.disabled = false,
    this.reportUncaughtExceptions = true,
    this.customReportingFunction});