UpdateTelemetryEvent.installFailed constructor

const UpdateTelemetryEvent.installFailed({
  1. String? stagingPath,
  2. String? version,
  3. String? channel,
  4. String? platform,
  5. Object? error,
})

Creates an install-failed event.

Implementation

const UpdateTelemetryEvent.installFailed({
  String? stagingPath,
  String? version,
  String? channel,
  String? platform,
  Object? error,
}) : this(
        type: UpdateTelemetryEventType.installFailed,
        stagingPath: stagingPath,
        version: version,
        channel: channel,
        platform: platform,
        error: error,
      );