HttpCodeException constructor

HttpCodeException(
  1. HttpClientResponse response,
  2. Uri uri
)

Implementation

HttpCodeException(this.response, this.uri)
    : super(
          message:
              'http request failed with status code ${response.statusCode}',
          exitCode: 48);