difference method

  1. @override
Set<E> difference(
  1. Set<Object?> other
)
override

Creates a new set with the elements of this that are not in other.

Implementation

@override
Set<E> difference(Set<Object?> other) {
  return _collective.difference(other);
}