interval property

Duration? interval
final

The base duration from which the delay between retries will be calculated. For fixed back-off, the delay will always be this value. For exponential back-off, the delay will be this value multiplied by 2^n where n is the number of attempts so far.

Implementation

final Duration? interval;