RetryBackOff.none constructor

const RetryBackOff.none()

Construct a null back-off representation, meaning no delay between retry attempts.

Implementation

const RetryBackOff.none()
    : interval = null,
      method = RetryBackOffMethod.none,
      withJitter = false,
      maxInterval = null;