any method

  1. @override
bool any(
  1. bool predicate(
    1. T value
    )
)
override

Checks whether any element of this list satisfies the given predicate.

Checks every element in iteration order, and returns true if any of them make predicate return true, otherwise returns false.

Implementation

@override
bool any(bool Function(T value) predicate) => _list.any(predicate);