denseTextConfiguration top-level property

TextTreeConfiguration denseTextConfiguration
final

Dense text tree configuration that minimizes horizontal whitespace.

Example:

<root_name>: <root_description>(<property1>; <property2> <propertyN>)
├<child_name>: <child_description>(<property1>, <property2>, <propertyN>)
└<child_name>: <child_description>(<property1>, <property2>, <propertyN>)

See also:

Implementation

final TextTreeConfiguration denseTextConfiguration = TextTreeConfiguration(
  propertySeparator: ', ',
  beforeProperties: '(',
  afterProperties: ')',
  lineBreakProperties: false,
  prefixLineOne:            '├',
  prefixOtherLines:         '',
  prefixLastChildLineOne:   '└',
  linkCharacter:            '│',
  propertyPrefixIfChildren: '│',
  propertyPrefixNoChildren: ' ',
  prefixOtherLinesRootNode: '',
  addBlankLineIfNoChildren: false,
  isBlankLineBetweenPropertiesAndChildren: false,
);