RetryOptions constructor

RetryOptions({
  1. int maxRetryTime = 5000,
  2. int minRetryTime = 5000,
  3. int maxRetry = 5,
  4. Future limitReachedCallback()?,
})

Implementation

RetryOptions({
  this.maxRetryTime = 5000,
  this.minRetryTime = 5000,
  this.maxRetry = 5,
  this.limitReachedCallback,
});