RunAttemptStatus constructor

const RunAttemptStatus({
  1. required String runId,
  2. required String issueId,
  3. required String issueIdentifier,
  4. required int attempt,
  5. required RunAttemptPhase phase,
  6. required String workspacePath,
  7. required DateTime startedAt,
  8. String? error,
})

Creates a snapshot.

Implementation

const RunAttemptStatus({
  required this.runId,
  required this.issueId,
  required this.issueIdentifier,
  required this.attempt,
  required this.phase,
  required this.workspacePath,
  required this.startedAt,
  this.error,
});