UpdateTelemetryEvent.artifactVerified constructor

const UpdateTelemetryEvent.artifactVerified({
  1. Uri? source,
  2. String? version,
  3. String? channel,
  4. String? platform,
})

Creates an artifact-verified event.

Implementation

const UpdateTelemetryEvent.artifactVerified({
  Uri? source,
  String? version,
  String? channel,
  String? platform,
}) : this(
        type: UpdateTelemetryEventType.artifactVerified,
        source: source,
        version: version,
        channel: channel,
        platform: platform,
      );