RetryHandler constructor

RetryHandler({
  1. int maxRetries = 3,
  2. Duration baseDelay = const Duration(seconds: 1),
  3. Duration maxDelay = const Duration(seconds: 30),
})

Implementation

RetryHandler({
  this.maxRetries = 3,
  this.baseDelay = const Duration(seconds: 1),
  this.maxDelay = const Duration(seconds: 30),
});