NiceSankeyNode constructor

const NiceSankeyNode({
  1. required String id,
  2. required String label,
  3. Color? color,
})

Implementation

const NiceSankeyNode({
  required this.id,
  required this.label,
  this.color,
});