any static method

Returns a predicate that combines multiple predicates with OR logic.

Implementation

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