isCreator method

bool isCreator(
  1. String userId
)

Checks if a user is the creator of the group

Implementation

bool isCreator(String userId) {
  return createdBy == userId;
}