RequestException constructor

RequestException(
  1. String? method,
  2. Uri uri,
  3. BaseRequest? request,
  4. BaseResponse? response, [
  5. Object? error,
])

Construct a new instance of RequestException using information from an HTTP request and response.

Implementation

RequestException(this.method, this.uri, this.request, this.response,
    [this.error]);