response method

HttpResponse response(
  1. Response response
)

Converts Response to HttpResponse.

Implementation

HttpResponse response(Response response) {
  final encoding = _encodingForHeaders(response.headers);
  final body = encoding.decode(response.bodyBytes);
  return HttpResponse(response.statusCode, body: body)
    ..headers.addAll(response.headers);
}