RetryEvaluator typedef

RetryEvaluator = FutureOr<bool> Function(DioException error, int attempt)

============================================================== 拦截器:网络请求失败后重试

Implementation

typedef RetryEvaluator = FutureOr<bool> Function(
  DioException error,
  int attempt,
);