HttpResponse constructor
HttpResponse(})
Implementation
HttpResponse(
this.method, String url, String requestedURL, int status, HttpBody? body,
{ResponseHeaderGetter? responseHeaderGetter,
this.request,
List<Uri>? redirects,
this.jsonDecoder,
HttpError? error})
: _body = body,
_error = error,
_responseHeaderGetter = responseHeaderGetter,
redirects = redirects ?? [],
super(url, requestedURL, status) {
_accessTime = instanceTime;
}