isSubscribed method

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

Check if a client is subscribed to an event.

Implementation

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