not method

Expr<bool?> not()

Negates this predicate; SQL NULL remains unknown.

Implementation

Expr<bool?> not() => Expr.internal(
  UnaryNode('NOT', expressionNode),
  Codecs.boolean.nullable(),
);