RetryConfig constructor

const RetryConfig({
  1. int maxRetries = 10,
  2. int baseDelayMs = 500,
  3. int maxDelayMs = 32000,
  4. int max529Retries = 3,
  5. bool persistent = false,
  6. int persistentMaxBackoffMs = 5 * 60 * 1000,
})

Implementation

const RetryConfig({
  this.maxRetries = 10,
  this.baseDelayMs = 500,
  this.maxDelayMs = 32000,
  this.max529Retries = 3,
  this.persistent = false,
  this.persistentMaxBackoffMs = 5 * 60 * 1000,
});