CelmProgress constructor

const CelmProgress({
  1. required String runId,
  2. required String currentStep,
  3. required CelmBudgetUse budget,
  4. List<CelmAttempt> history = const [],
  5. bool escalated = false,
  6. CelmOutcome? outcome,
})

Implementation

const CelmProgress({
  required this.runId,
  required this.currentStep,
  required this.budget,
  this.history = const [],
  this.escalated = false,
  this.outcome,
});