match method

List<Entity> match(
  1. EntitySystem system
)

Implementation

List<Entity> match(EntitySystem system) {
  return system.entities.value.where((element) => matches(element)).toList();
}