match method

bool match(
  1. Entity entity
)

Check if the given entity matches against the query.

Implementation

bool match(Entity entity) => _filters.every((filter) => filter.match(entity));