operator & method

Filter operator &(
  1. Filter other
)

Record must match this and other filter.

Use Filter.and to combine more than two filters.

Implementation

Filter operator &(Filter other) => SembastCompositeFilter.and([this, other]);