ResponseFuture<R> constructor
ResponseFuture<R> (
- ClientCall<
dynamic, R> _call
Implementation
ResponseFuture(this._call)
: super(
_call.response
.fold<R?>(null, _ensureOnlyOneResponse)
.then(_ensureOneResponse),
);