defaultConfig property

ConfigMapOfSets defaultConfig

Implementation

static ConfigMapOfSets get defaultConfig => _defaultConfig;
void defaultConfig=(ConfigMapOfSets config)

Global configuration that specifies if, by default, the IMapOfSets use equality or identity for their operator ==.

By default isDeepEquals: true (maps of sets are compared by equality), and sortKeys: true and sortValues: true (certain map outputs are sorted).

Implementation

static set defaultConfig(ConfigMapOfSets config) {
  if (_defaultConfig == config) return;
  if (ImmutableCollection.isConfigLocked)
    throw StateError("Can't change the configuration of immutable collections.");
  _defaultConfig = config;
}