isNotExp method

Expression<bool> isNotExp(
  1. Expression<D> other
)

Generates an IS NOT expression in SQL, comparing this expression with the other expression.

This the inverse of isExp.

Implementation

Expression<bool> isNotExp(Expression<D> other) {
  return BaseInfixOperator(this, 'IS NOT', other,
      precedence: Precedence.comparisonEq);
}