isExp method

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

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

This is the SQL method most closely resembling the Object.== operator in Dart. When this expression and other are both non-null, this is the same as equalsExp. Two NULL values are considered equal as well.

Implementation

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