containsAll method

  1. @Deprecated('In favour of [containsEvery]')
bool containsAll(
  1. Iterable<E> other
)

Returns true if the specified value is equal to at least one element of the given list; false otherwise

Implementation

@Deprecated('In favour of [containsEvery]')
bool containsAll(Iterable<E> other) => containsEvery(other);