DebugPropertyNode constructor
Implementation
DebugPropertyNode({
required this.name,
this.showName = true,
this.showSeparator = true,
}) : assert(
name == null || !name.endsWith(":"),
"Names must not end with colons.\n"
"name:\n"
' "$name"',
);