resetAllConfigurations static method

void resetAllConfigurations()

Implementation

static void resetAllConfigurations() {
  if (ImmutableCollection.isConfigLocked)
    throw StateError("Can't change the configuration of immutable collections.");
  _autoFlush = true;
  _disallowUnsafeConstructors = false;
  _prettyPrint = true;
  IList.resetAllConfigurations();
  ISet.resetAllConfigurations();
  IMap.resetAllConfigurations();
}