clone method

Response clone()

Implementation

Response clone() {
  return Response._internal(
    status: status,
    statusText: statusText,
    headers: headers.clone(),
    bodyData: bodyData.clone(),
    url: url,
    redirected: redirected,
  );
}