Filter.notEquals constructor Null safety
- String field,
- dynamic value
Filter where the field
value is not equals to the specified value.
Implementation
factory Filter.notEquals(String field, value) {
return SembastFilterPredicate(field, FilterOperation.notEquals, value);
}