NiceSankeyDiagram constructor
- Key? key,
- required List<
NiceSankeyNode> nodes, - required List<
NiceSankeyLink> links, - double height = 300,
- double nodeWidth = 20,
- double nodePadding = 10,
Implementation
const NiceSankeyDiagram({
super.key,
required this.nodes,
required this.links,
this.height = 300,
this.nodeWidth = 20,
this.nodePadding = 10,
});