onNotifyUserJoined method
Implementation
void onNotifyUserJoined(Map args) {
String userID = args['userID'];
String userName = args['userName'];
notifyUserJoined?.call(userID, userName);
}
void onNotifyUserJoined(Map args) {
String userID = args['userID'];
String userName = args['userName'];
notifyUserJoined?.call(userID, userName);
}