Filter.notEqual constructor

Filter.notEqual(
  1. String key,
  2. Object value
)

Matches all values that are not equal to a specified value.

Implementation

factory Filter.notEqual(String key, Object value) =>
    Filter._(operator: FilterOperator.notEqual, key: key, value: value);