exists function

FilterExpr exists(
  1. String field, {
  2. bool value = true,
})

Matches if the field's existence matches the given value.

Implementation

FilterExpr exists(String field, {bool value = true}) {
  return FilterExists(field, value);
}