all method

bool all(
  1. bool test(
    1. E
    )
)

Alias for Iterable.every.

Implementation

bool all(bool Function(E) test) => this.every(test);