operator ~ method
Boolean NOT operator.
Unfortunately Dart does not support overloading the unary - operator
so be careful about precedence.
Implementation
Expr operator ~() => not(this);
Boolean NOT operator.
Unfortunately Dart does not support overloading the unary - operator
so be careful about precedence.
Expr operator ~() => not(this);