errorPropertyTextConfiguration top-level property

TextTreeConfiguration errorPropertyTextConfiguration
final

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:

Implementation

final TextTreeConfiguration errorPropertyTextConfiguration = TextTreeConfiguration(
  propertySeparator: ', ',
  beforeProperties: '(',
  afterProperties: ')',
  prefixLineOne: '',
  prefixOtherLines: '',
  prefixLastChildLineOne: '',
  lineBreakProperties: false,
  addBlankLineIfNoChildren: false,
  showChildren: false,
  propertyPrefixIfChildren: '  ',
  propertyPrefixNoChildren: '  ',
  linkCharacter: '',
  prefixOtherLinesRootNode: '',
  isNameOnOwnLine: true,
);