filter method

Filters audit log by users

Implementation

Iterable<AuditLogEntry> filter(bool Function(AuditLogEntry) test) =>
    entries.values.where(test);