retryOptions property

RetryOptions retryOptions
getter/setter pair

The default retry options for run / runTx operations.

Implementation

RetryOptions retryOptions = RetryOptions(
  maxAttempts: 1,
  delayFactor: Duration(milliseconds: 5),
  maxDelay: Duration(seconds: 1),
  randomizationFactor: 0.1,
);