Returns a new set with the elements of this that are not in other.
other
Set<T> difference(Set<T> other) { return Set<T>.from(_container.difference(other._container)); }