Filter.and constructor Null safety
Record must match all of the given filters
.
If you only have two filters, you can also write filter1 & filter2
.
Implementation
factory Filter.and(List<Filter> filters) =>
SembastCompositeFilter.and(filters);