close method
Close the request for input. Returns the value of done.
Implementation
@override
Future<HttpClientResponse> close() {
return _httpClientRequest.close().then(
(response) => processResponse(
response, this, timestamp), //Future.value(response),
onError: (dynamic err) {
_processConvivaNetworkEvent(
_httpClientRequest, null, 0, 0, err.toString());
throw err;
});
}