contains method

Future<bool> contains(
  1. Object e
)

Refer to Iterable.contains;

Implementation

Future<bool> contains(Object e) async => (await this).contains(e);