singleLineTextConfiguration top-level property
final
Render a node as a single line omitting children.
Example:
<name>: <description>(<property1>, <property2>, ..., <propertyN>)
See also:
- DiagnosticsTreeStyle.singleLine, uses this style for ASCII art display.
Implementation
final TextTreeConfiguration singleLineTextConfiguration = TextTreeConfiguration(
propertySeparator: ', ',
beforeProperties: '(',
afterProperties: ')',
prefixLineOne: '',
prefixOtherLines: '',
prefixLastChildLineOne: '',
lineBreak: '',
lineBreakProperties: false,
addBlankLineIfNoChildren: false,
showChildren: false,
propertyPrefixIfChildren: ' ',
propertyPrefixNoChildren: ' ',
linkCharacter: '',
prefixOtherLinesRootNode: '',
);