SimpleSankeyNode constructor

const SimpleSankeyNode({
  1. required String id,
  2. required String label,
  3. int? column,
  4. Color? color,
})

Implementation

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