RetryConfig constructor

const RetryConfig({
  1. bool isToRetryOnError = false,
  2. int retryTimes = 3,
})

Implementation

const RetryConfig({
  this.isToRetryOnError = false,
  this.retryTimes = 3,
});