RetryPhase constructor

RetryPhase({
  1. List<RetryAttempt>? attempts,
  2. String? backoffMode,
  3. String? jobId,
  4. String? phaseId,
  5. String? totalAttempts,
})

Implementation

RetryPhase({
  this.attempts,
  this.backoffMode,
  this.jobId,
  this.phaseId,
  this.totalAttempts,
});