PlexRetryInterceptor constructor

PlexRetryInterceptor({
  1. int maxAttempts = 3,
  2. List<int> retryOnStatusCodes = const [500, 502, 503],
})

Implementation

PlexRetryInterceptor({
  this.maxAttempts = 3,
  this.retryOnStatusCodes = const [500, 502, 503],
});