chore: fix and format using melos

This commit is contained in:
2023-02-23 19:19:48 +01:00
parent d098d9a6bf
commit 8d833d39d7
152 changed files with 441 additions and 468 deletions
@@ -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)';
}