not property
Predicate
get
not
Returns the negation. Double-negation collapses: p.not.not == p.
Implementation
Predicate get not =>
this is NotPredicate ? (this as NotPredicate).inner : NotPredicate(this);