DiagramActionButton constructor

const DiagramActionButton({
  1. Key? key,
  2. required IconData icon,
  3. required VoidCallback? onPressed,
  4. bool isDestructive = false,
})

Implementation

const DiagramActionButton({
  super.key,
  required this.icon,
  required this.onPressed,
  this.isDestructive = false,
});