getUserClientsID method

List<String> getUserClientsID(
  1. String userID
)

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] ?? [];
}