NiceTreeMap constructor

const NiceTreeMap({
  1. Key? key,
  2. required List<NiceTreeMapNode> data,
  3. double? width,
  4. double height = 300,
  5. String? title,
  6. void onNodeTap(
    1. NiceTreeMapNode node
    )?,
})

Implementation

const NiceTreeMap({
  super.key,
  required this.data,
  this.width,
  this.height = 300,
  this.title,
  this.onNodeTap,
});