anyTrue function

bool anyTrue(
  1. Iterable<bool> values
)

Implementation

bool anyTrue(Iterable<bool> values) => values.any((it) => it);