HttpRetryPolicy constructor

HttpRetryPolicy({
  1. required int maxRetries,
  2. required Duration perRetryTimeout,
  3. List<String>? httpRetryEvents,
  4. List<TcpRetryPolicyEvent>? tcpRetryEvents,
})

Implementation

HttpRetryPolicy({
  required this.maxRetries,
  required this.perRetryTimeout,
  this.httpRetryEvents,
  this.tcpRetryEvents,
});