This commit is contained in:
Devon Carew 2025-06-10 17:31:14 -07:00
parent f1f2477fd5
commit ed65dc0b78
No known key found for this signature in database
GPG Key ID: 301D7E534BF0F42E
1 changed files with 5 additions and 5 deletions

View File

@ -58,11 +58,11 @@ class ResponseFuture<R> extends DelegatingFuture<R> implements Response {
}
ResponseFuture(this._call)
: super(
_call.response
.fold<R?>(null, _ensureOnlyOneResponse)
.then(_ensureOneResponse),
);
: super(
_call.response
.fold<R?>(null, _ensureOnlyOneResponse)
.then(_ensureOneResponse),
);
@override
Future<Map<String, String>> get headers => _call.headers;