close method
Releases the underlying connections. Safe to call more than once.
Implementation
@override
void close() {
if (_closed) return;
_closed = true;
_client.close(force: true);
}
Releases the underlying connections. Safe to call more than once.
@override
void close() {
if (_closed) return;
_closed = true;
_client.close(force: true);
}