either method

Future<bool> either(
  1. bool test(
    1. dynamic e
    )
)

Refer to Iterable.any;

Implementation

Future<bool> either(bool test(e)) async => (await this).any(test);