existClient method

bool existClient(
  1. String id
)

Checks if a client with the specified ID exists.

The id parameter is the unique identifier of the client.

Implementation

bool existClient(String id) {
  return _clients.containsKey(id);
}