isInGroup method

bool isInGroup(
  1. int entity,
  2. String group
)

Check if the entity is in the supplied group.

Implementation

bool isInGroup(int entity, String group) {
  final groups = _groupsByEntity[entity];
  return (groups != null) && groups.contains(group);
}