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