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