Expression.notEqual constructor

Expression.notEqual(
  1. String fieldPath,
  2. dynamic value
)

Creates an expression that filters a field for a value different from the given value.

Implementation

factory Expression.notEqual(String fieldPath, dynamic value) {
  return NotEqual.fieldValue(fieldPath, value);
}