bool call(Record record) { if (_filters.isNotEmpty) { for (final f in _filters) { if (!f(record)) { return false; } } } return true; }