Filter.byKey constructor

Filter.byKey(
  1. Object? key
)

Filter by key.

Less efficient than using store.record(key).

Implementation

factory Filter.byKey(Object? key) => Filter.equals(Field.key, key);