done property
An HttpClientResponse
future that will complete once the response is
available.
If an error occurs before the response is available, this future will complete with an error.
Implementation
@override
Future<HttpClientResponse> get done {
return _httpClientRequest.done.then(
(response) => Future.value(
response), //processResponse(response, _httpClientRequest, timestamp),
onError: (dynamic err) {
_processConvivaNetworkEvent(this, null, 0, 0, err.toString());
throw err;
});
}