all method

bool all(
  1. bool predicate(
    1. T t
    )
)

Checks whether every element of this Iterable satisfies test.

Same as standard dart every.

Implementation

bool all(bool Function(T t) predicate) => every(predicate);