isNull method

Expr<bool> isNull()

Tests for SQL NULL, yielding a non-null boolean.

Implementation

Expr<bool> isNull() => Expr.internal(
  UnaryNode('IS NULL', expressionNode, postfix: true),
  Codecs.boolean,
);