withDefaultBase method
      
void
withDefaultBase()
      
     
    
As withBase, but sets base back to the default value, which
instantiates Map<K, V>.
Implementation
void withDefaultBase() {
  _mapFactory = null;
  _setSafeMap(_createMap()..addAll(_map));
}