not method

Expression<bool?> not()

Negates this boolean expression. The returned expression is true if this is false, and vice versa.

Implementation

Expression<bool?> not() => _NotExpression(this);