Returns a new set with the elements of other removed from this set.
other
Example:
{1, 2, 3}.differenceWith({2, 3}); // {1}
Set<E> differenceWith(Set<E> other) => difference(other);