SimpleTreeDiagramData constructor
const
SimpleTreeDiagramData({
- required String label,
- double value = 0,
- List<
SimpleTreeDiagramData> children = const [], - Color? color,
Implementation
const SimpleTreeDiagramData({
required this.label,
this.value = 0,
this.children = const [],
this.color,
});