Config constructor

Config({
  1. required String accessToken,
  2. bool analyticsEventEnabled = true,
  3. bool crashReportingEnabled = true,
  4. bool httpResponseBodyCaptureEnabled = true,
  5. bool interactionTracingEnabled = true,
  6. bool loggingEnabled = true,
  7. bool networkErrorRequestEnabled = true,
  8. bool networkRequestEnabled = true,
  9. bool webViewInstrumentation = true,
  10. bool printStatementAsEventsEnabled = true,
  11. bool httpInstrumentationEnabled = true,
})

Implementation

Config(
    {required this.accessToken,
    this.analyticsEventEnabled = true,
    this.crashReportingEnabled = true,
    this.httpResponseBodyCaptureEnabled = true,
    this.interactionTracingEnabled = true,
    this.loggingEnabled = true,
    this.networkErrorRequestEnabled = true,
    this.networkRequestEnabled = true,
    this.webViewInstrumentation = true,
    this.printStatementAsEventsEnabled = true,
    this.httpInstrumentationEnabled = true});