RetryContext constructor

const RetryContext({
  1. int? previousRetryCount,
  2. int? elapsedMilliseconds,
  3. Exception? retryReason,
})

Implementation

const RetryContext({
  this.previousRetryCount,
  this.elapsedMilliseconds,
  this.retryReason,
});