TelemetryConfig constructor

const TelemetryConfig({
  1. bool enabled = true,
  2. String? analyticsKey,
  3. String? baseUrl,
  4. Map<String, String>? headers,
  5. String? userId,
  6. String? sessionId,
})

Implementation

const TelemetryConfig({
  this.enabled = true,
  this.analyticsKey,
  this.baseUrl,
  this.headers,
  this.userId,
  this.sessionId,
});