errorPropertyTextConfiguration top-level property
Render the name on a line followed by the body and properties on the next line omitting the children.
Example:
<name>:
<description>(<property1>, <property2>, ..., <propertyN>)
See also:
- DiagnosticsTreeStyle.errorProperty, uses this style for ASCII art display.
Implementation
final TextTreeConfiguration errorPropertyTextConfiguration = TextTreeConfiguration(
propertySeparator: ', ',
beforeProperties: '(',
afterProperties: ')',
prefixLineOne: '',
prefixOtherLines: '',
prefixLastChildLineOne: '',
lineBreakProperties: false,
addBlankLineIfNoChildren: false,
showChildren: false,
propertyPrefixIfChildren: ' ',
propertyPrefixNoChildren: ' ',
linkCharacter: '',
prefixOtherLinesRootNode: '',
isNameOnOwnLine: true,
);