notEquals method

Filter notEquals(
  1. dynamic other
)

Convenience method for creating a CompareFilter which matches if this does not equal other.

If other is not an Expression, it will be wrapped into a ValueExpression.

Implementation

Filter notEquals(dynamic other) =>
    CompareFilter(this, CompareType.notEquals, Expression.dynamic(other));