all static method

Returns a predicate that combines multiple predicates with AND logic.

Implementation

static PostFramePredicate all(List<PostFramePredicate> predicates) {
  return () => predicates.every((p) => p());
}