ExponentialBackoff constructor

const ExponentialBackoff({
  1. Duration baseDelay = const Duration(seconds: 1),
  2. Duration maxDelay = const Duration(seconds: 30),
  3. bool withJitter = true,
})

Implementation

const ExponentialBackoff({
  this.baseDelay = const Duration(seconds: 1),
  this.maxDelay = const Duration(seconds: 30),
  this.withJitter = true,
});