isSubscribed static method

bool isSubscribed(
  1. String event,
  2. SocketClient client
)

Check if a client is subscribed to an event.

Implementation

static bool isSubscribed(String event, SocketClient client) {
  return _manager.isSubscribed(event, client);
}