HttpRetryResponseException constructor

HttpRetryResponseException({
  1. required int statusCode,
  2. required Map<String, String> headers,
  3. required String method,
  4. required StreamedResponse finalResponse,
})

Implementation

HttpRetryResponseException({
  required this.statusCode,
  required this.headers,
  required this.method,
  required this.finalResponse,
});