query method
Query records using a where predicate.
Implementation
List<SyncRecord> query({required bool Function(SyncRecord) where}) {
return _records.values.where(where).toList();
}
Query records using a where predicate.
List<SyncRecord> query({required bool Function(SyncRecord) where}) {
return _records.values.where(where).toList();
}