isNotNull method

Expr<bool> isNotNull()

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

Implementation

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