MiniIconButton constructor

const MiniIconButton({
  1. Key? key,
  2. required Widget icon,
  3. required VoidCallback? onPressed,
  4. double size = 20,
  5. String? tooltip,
  6. Widget? selectedIcon,
  7. bool? isSelected,
  8. bool? pressCheckAnimation = true,
})

Implementation

const MiniIconButton({
  super.key,
  required this.icon,
  required this.onPressed,
  this.size = 20,
  this.tooltip,
  this.selectedIcon,
  this.isSelected,
  this.pressCheckAnimation = true,
});