sendToUsers abstract method

void sendToUsers(
  1. List userIds,
  2. String event,
  3. dynamic data
)

Send a message to multiple specific users (by user IDs). The adapter is responsible for mapping user IDs to client ID(s).

Implementation

void sendToUsers(List<dynamic> userIds, String event, dynamic data);