getUserClientsID method
Retrieves a list of client IDs associated with a specific user ID.
The userID
parameter is the ID of the user. Returns a list of client IDs associated with the user.
Implementation
List<String> getUserClientsID(String userID) {
return _users[userID] ?? [];
}