chore: fix and format using melos
This commit is contained in:
@@ -31,6 +31,7 @@ class MiddlewareResponse {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
int? get contentLength => httpResponse.contentLength;
|
||||
Map<String, String> get headers => httpResponse.headers;
|
||||
|
||||
@@ -40,11 +41,11 @@ class MiddlewareResponse {
|
||||
|
||||
MiddlewareResponse copyWith({
|
||||
BaseResponse? httpResponse,
|
||||
}) => MiddlewareResponse(
|
||||
httpResponse: httpResponse ?? this.httpResponse,
|
||||
);
|
||||
}) =>
|
||||
MiddlewareResponse(
|
||||
httpResponse: httpResponse ?? this.httpResponse,
|
||||
);
|
||||
|
||||
@override
|
||||
String toString() =>
|
||||
'MiddlewareResponse(httpResponse: $httpResponse)';
|
||||
String toString() => 'MiddlewareResponse(httpResponse: $httpResponse)';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user