Filter<T extends Object>.exists constructor

const Filter<T extends Object>.exists(
  1. FilterField<T> field, {
  2. required bool exists,
})

Existence filter matching field presence when exists is true.

Implementation

const factory Filter.exists(
  FilterField<T> field, {
  required bool exists,
}) = ExistsOperator<T>;