resetAllConfigurations static method

void resetAllConfigurations()
override

Implementation

static void resetAllConfigurations() {
  if (ImmutableCollection.isConfigLocked)
    throw StateError("Can't change the configuration of immutable collections.");
  ISet.flushFactor = _defaultFlushFactor;
  ISet.defaultConfig = _defaultConfig;
}