userJoined method
Implementation
void userJoined(UserJoinedData data) async {
final connection = await createConnection(data);
if (connection != null) {
sendConnectionRequest(connection.userId!);
}
}
void userJoined(UserJoinedData data) async {
final connection = await createConnection(data);
if (connection != null) {
sendConnectionRequest(connection.userId!);
}
}