contains method

bool contains(
  1. Object element
)

Implementation

bool contains(Object element) {
  return _iterable.contains(element);
}