RetryBackOff.fixed constructor

const RetryBackOff.fixed(
  1. Duration? interval, {
  2. bool withJitter = true,
})

Construct a new fixed back-off representation where interval is the delay between each retry.

Implementation

const RetryBackOff.fixed(this.interval, {this.withJitter = true})
    : method = RetryBackOffMethod.fixed,
      maxInterval = null;