ExponentialBackoff constructor
const
ExponentialBackoff({})
Creates an exponential backoff strategy.
Implementation
const ExponentialBackoff({
this.baseDelay = const Duration(seconds: 1),
this.multiplier = 2.0,
this.maxDelay = const Duration(minutes: 5),
});