containsElement method

bool containsElement(
  1. E element
)

Implementation

bool containsElement(E element) {
  for (Iterable<E> iterable in this) {
    if (iterable.contains(element)) {
      return true;
    }
  }
  return false;
}