notEq method

Expr notEq(
  1. Object other
)

Predicate that checks if this expression is not equal to other.

Implementation

Expr notEq(Object other) => ~eq(other);