getEntities method

Iterable<int> getEntities(
  1. String group
)

Get all entities that belong to the provided group.

Implementation

Iterable<int> getEntities(String group) =>
    _entitiesByGroup.putIfAbsent(group, Bag<int>.new);