NodeIconBox constructor

const NodeIconBox({
  1. Key? key,
  2. required Widget? iconWidget,
  3. required double width,
  4. required double height,
  5. required EdgeInsets padding,
  6. required EdgeInsets margin,
  7. required double emptyWidth,
  8. required double scale,
})

Implementation

const NodeIconBox({
  super.key,
  required this.iconWidget,
  required this.width,
  required this.height,
  required this.padding,
  required this.margin,
  required this.emptyWidth,
  required this.scale,
});