UpdateTelemetryEvent constructor

const UpdateTelemetryEvent({
  1. required UpdateTelemetryEventType type,
  2. String? version,
  3. String? channel,
  4. String? platform,
  5. Uri? source,
  6. String? stagingPath,
  7. bool? mandatory,
  8. Object? error,
})

Creates a telemetry event.

Implementation

const UpdateTelemetryEvent({
  required this.type,
  this.version,
  this.channel,
  this.platform,
  this.source,
  this.stagingPath,
  this.mandatory,
  this.error,
});