close method
Implementation
void close(num code) {
this._clearHeartbeat();
if (this._ws != null) {
this._ws!.close(code.toInt(), closeEventCodeInfo[code]?.name);
this._ws = null;
}
}
void close(num code) {
this._clearHeartbeat();
if (this._ws != null) {
this._ws!.close(code.toInt(), closeEventCodeInfo[code]?.name);
this._ws = null;
}
}