withDefaultBase method

void withDefaultBase()

As withBase, but sets base back to the default value, which instantiates Set<E>.

Implementation

void withDefaultBase() {
  _setFactory = null;
  _setSafeSet(_createSet()..addAll(_set));
}