socketDisconnect method
dynamic
socketDisconnect()
Implementation
socketDisconnect() {
if (_socket != null && isConnected) {
_socket?.close();
debugPrint("Socket:: ChatSocketManager Disconnected");
}
}