Tests whether the given boolean argument x is false.
x
Useful as a predicate for filter-type higher-order functions.
[true, true, true, false, true].any(isFalse) // true
bool isFalse(bool x) => !isTrue(x);