RetryConfig constructor

RetryConfig({
  1. String? maxBackoffDuration,
  2. int? maxDoublings,
  3. String? maxRetryDuration,
  4. String? minBackoffDuration,
  5. int? retryCount,
})

Implementation

RetryConfig({
  this.maxBackoffDuration,
  this.maxDoublings,
  this.maxRetryDuration,
  this.minBackoffDuration,
  this.retryCount,
});