Determines if the contents of this set and other are equal.
other
bool equals(Set<T> other) => identical(this, other) || (length == other.length && containsAll(other));