ExponentialBackoffStrategy constructor
ExponentialBackoffStrategy({})
Creates a new ExponentialBackoffStrategy.
Implementation
ExponentialBackoffStrategy({
this.initialDelay = const Duration(seconds: 1),
this.maxDelay = const Duration(minutes: 5),
this.multiplier = 2.0,
this.randomizationFactor = 0.1,
});