Filter.notIn constructor

Filter.notIn(
  1. String key,
  2. List<Object> values
)

Matches none of the values specified in an array.

Implementation

factory Filter.notIn(String key, List<Object> values) =>
    Filter._(operator: FilterOperator.notIn, key: key, value: values);