notInArray function

FilterExpr notInArray(
  1. String field,
  2. List values
)

Matches if the field does not contain any of the given values.

Implementation

FilterExpr notInArray(String field, List<dynamic> values) {
  return FilterNotIn(field, values);
}