Closes the client.
This terminates all active requests.
@override void close({bool force = false}) { if (force) { for (var xhr in _xhrs) { xhr.abort(); } } _xhrs.clear(); }