@@ -14,15 +14,16 @@ extension IOStreamedResponseCopyWith on IOStreamedResponse {
1414 bool ? persistentConnection,
1515 String ? reasonPhrase,
1616 HttpClientResponse ? inner,
17- }) => IOStreamedResponse (
18- stream ?? this .stream,
19- statusCode ?? this .statusCode,
20- contentLength: contentLength ?? this .contentLength,
21- request: request ?? this .request,
22- headers: headers ?? this .headers,
23- isRedirect: isRedirect ?? this .isRedirect,
24- persistentConnection: persistentConnection ?? this .persistentConnection,
25- reasonPhrase: reasonPhrase ?? this .reasonPhrase,
26- inner: inner,
27- );
17+ }) =>
18+ IOStreamedResponse (
19+ stream ?? this .stream,
20+ statusCode ?? this .statusCode,
21+ contentLength: contentLength ?? this .contentLength,
22+ request: request ?? this .request,
23+ headers: headers ?? this .headers,
24+ isRedirect: isRedirect ?? this .isRedirect,
25+ persistentConnection: persistentConnection ?? this .persistentConnection,
26+ reasonPhrase: reasonPhrase ?? this .reasonPhrase,
27+ inner: inner,
28+ );
2829}
0 commit comments