close method
Closes the HttpClient.
Implementation
@override
void close() {
if (_httpClient != null) {
_httpClient!.close(force: true);
_httpClient = null;
}
}
Closes the HttpClient.
@override
void close() {
if (_httpClient != null) {
_httpClient!.close(force: true);
_httpClient = null;
}
}