Returns true if the two sets share no elements.
true
Example:
{1, 2}.isDisjointWith({3, 4}); // true
bool isDisjointWith(Set<E> other) => !any(other.contains);