prettyPrint property

bool prettyPrint

Implementation

static bool get prettyPrint => _prettyPrint;
void prettyPrint=(bool value)

Global configuration that specifies if the collections should print with "pretty print".

Implementation

static set prettyPrint(bool value) {
  if (_prettyPrint == value) return;
  if (ImmutableCollection.isConfigLocked)
    throw StateError("Can't change the configuration of immutable collections.");
  _prettyPrint = value;
}