NeomageIconButton constructor

const NeomageIconButton({
  1. Key? key,
  2. required IconData icon,
  3. required String tooltip,
  4. VoidCallback? onPressed,
  5. double size = 20,
  6. Color? color,
  7. Color? backgroundColor,
})

Implementation

const NeomageIconButton({
  super.key,
  required this.icon,
  required this.tooltip,
  this.onPressed,
  this.size = 20,
  this.color,
  this.backgroundColor,
});