Not constructor
Not(
- dynamic expr
Creates $not
operator expression
Evaluates a boolean and returns the opposite boolean value; i.e. when
passed an expression that evaluates to true
, $not
returns false
; when
passed an expression that evaluates to false
, $not returns true
.
Implementation
Not(expr) : super('not', expr);