DebugBlock constructor
DebugBlock({
- String? name,
- bool showName = true,
- bool showSeparator = true,
- Object? value,
- String? description,
- List<
DebugPropertyNode> children = const [], - List<
DebugPropertyNode> properties = const [],
Implementation
DebugBlock({
super.name,
bool showName = true,
super.showSeparator,
this.value,
String? description,
List<DebugPropertyNode> children = const [],
List<DebugPropertyNode> properties = const [],
}) : _description = description ?? '',
_children = children,
_properties = properties,
super(
showName: showName && name != null,
);