isMember method
- 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);
}