not static method

Returns a predicate that negates another predicate.

Implementation

static PostFramePredicate not(PostFramePredicate predicate) {
  return () => !predicate();
}