File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,8 @@ class InterceptedClient extends BaseClient {
389389 BaseRequest interceptedRequest = request.copyWith ();
390390 for (InterceptorContract interceptor in interceptors) {
391391 if (await interceptor.shouldInterceptRequest (
392- request: interceptedRequest)) {
392+ request: interceptedRequest,
393+ )) {
393394 interceptedRequest = await interceptor.interceptRequest (
394395 request: interceptedRequest,
395396 );
@@ -404,7 +405,8 @@ class InterceptedClient extends BaseClient {
404405 BaseResponse interceptedResponse = response;
405406 for (InterceptorContract interceptor in interceptors) {
406407 if (await interceptor.shouldInterceptResponse (
407- response: interceptedResponse)) {
408+ response: interceptedResponse,
409+ )) {
408410 interceptedResponse = await interceptor.interceptResponse (
409411 response: interceptedResponse,
410412 );
You can’t perform that action at this time.
0 commit comments