SimpleTreeDiagramData constructor

const SimpleTreeDiagramData({
  1. required String label,
  2. double value = 0,
  3. List<SimpleTreeDiagramData> children = const [],
  4. Color? color,
})

Implementation

const SimpleTreeDiagramData({
  required this.label,
  this.value = 0,
  this.children = const [],
  this.color,
});