sparseTextConfiguration top-level property
final
Default text tree configuration.
Example:
<root_name>: <root_description>
│ <property1>
│ <property2>
│ ...
│ <propertyN>
├─<child_name>: <child_description>
│ │ <property1>
│ │ <property2>
│ │ ...
│ │ <propertyN>
│ │
│ └─<child_name>: <child_description>
│ <property1>
│ <property2>
│ ...
│ <propertyN>
│
└─<child_name>: <child_description>'
<property1>
<property2>
...
<propertyN>
See also:
Implementation
final TextTreeConfiguration sparseTextConfiguration = TextTreeConfiguration(
prefixLineOne: '├─',
prefixOtherLines: ' ',
prefixLastChildLineOne: '└─',
linkCharacter: '│',
propertyPrefixIfChildren: '│ ',
propertyPrefixNoChildren: ' ',
prefixOtherLinesRootNode: ' ',
)