FishboneNodeDrag constructor

FishboneNodeDrag({
  1. Key? key,
  2. required IMindMapNode node,
  3. bool isLast = false,
  4. double width = 0,
  5. double height = 0,
})

Implementation

FishboneNodeDrag({
  super.key,
  required this.node,
  this.isLast = false,
  this.width = 0,
  this.height = 0,
});