resetAllConfigurations static method

void resetAllConfigurations()
override

Implementation

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