joined method

bool joined(
  1. String uid
)

Function to check if a user has joined the room

Implementation

bool joined(String uid) {
  return players.contains(uid);
}