clone method

Response clone()

Implementation

Response clone() {
  return Response._internal(
    body: body?.clone(),
    headers: Headers(headers),
    ok: ok,
    redirected: redirected,
    status: status,
    statusText: statusText,
    type: type,
    url: url,
  );
}