isMember method

bool isMember(
  1. String userId
)

//////////// //////////// Checks if a user is a member of the group

Implementation

// II.G - Helper Methods
///////////////
/// Checks if a user is a member of the group
bool isMember(String userId) {
  return members.contains(userId);
}