HTTPRetry constructor

const HTTPRetry({
  1. required int attempts,
  2. Duration? perTryTimeout,
  3. String? retryOn,
  4. bool? retryRemoteLocalities,
})

The main constructor.

Implementation

const HTTPRetry({
  required this.attempts,
  this.perTryTimeout,
  this.retryOn,
  this.retryRemoteLocalities,
});