any method

  1. @override
bool any(
  1. bool test(
    1. T
    )
)
override

Checks if any item in the list satisfies the provided test.

Implementation

@override
bool any(bool Function(T) test) => _items.any(test);