not static method
Returns a predicate that negates another predicate.
Implementation
static PostFramePredicate not(PostFramePredicate predicate) {
return () => !predicate();
}
Returns a predicate that negates another predicate.
static PostFramePredicate not(PostFramePredicate predicate) {
return () => !predicate();
}