UpdateTelemetryEvent.checkStarted constructor

const UpdateTelemetryEvent.checkStarted({
  1. Uri? source,
  2. String? channel,
})

Creates a check-started event.

Implementation

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