NiceTreeMap constructor
- Key? key,
- required List<
NiceTreeMapNode> data, - double? width,
- double height = 300,
- String? title,
- void onNodeTap(
- NiceTreeMapNode node
Implementation
const NiceTreeMap({
super.key,
required this.data,
this.width,
this.height = 300,
this.title,
this.onNodeTap,
});