operator ~ method

Expr operator ~()

Boolean NOT operator.

Unfortunately Dart does not support overloading the unary - operator so be careful about precedence.

Implementation

Expr operator ~() => not(this);