RetryPhase constructor

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

Implementation

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