defaultConfig property
ConfigMapOfSets
get
defaultConfig
Implementation
static ConfigMapOfSets get defaultConfig => _defaultConfig;
set
defaultConfig
(ConfigMapOfSets config)
Global configuration that specifies if, by default, the IMapOfSet
s
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;
}