LokotroRetryInterceptor constructor
LokotroRetryInterceptor({})
Implementation
LokotroRetryInterceptor({
this.maxRetries = 3,
this.retryDelay = const Duration(seconds: 1),
this.retryableErrors = const [
DioExceptionType.connectionTimeout,
DioExceptionType.sendTimeout,
DioExceptionType.receiveTimeout,
DioExceptionType.connectionError,
],
});