getAllClients method
Retrieves a map of all clients with their IDs as keys.
Returns a map where the keys are client IDs and the values are SocketClient instances.
Implementation
Map<String, SocketClient> getAllClients() {
return _clients;
}
Retrieves a map of all clients with their IDs as keys.
Returns a map where the keys are client IDs and the values are SocketClient instances.
Map<String, SocketClient> getAllClients() {
return _clients;
}