NiceTreeMapNode constructor

const NiceTreeMapNode({
  1. required String label,
  2. required double value,
  3. Color? color,
  4. List<NiceTreeMapNode>? children,
})

Implementation

const NiceTreeMapNode({
  required this.label,
  required this.value,
  this.color,
  this.children,
});