UpdateTelemetryEvent.checkFailed constructor

const UpdateTelemetryEvent.checkFailed({
  1. Uri? source,
  2. String? channel,
  3. Object? error,
})

Creates a check-failed event.

Implementation

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