NeoIconButton constructor

const NeoIconButton({
  1. Key? key,
  2. required IconData icon,
  3. VoidCallback? onPressed,
  4. double size = 56,
  5. Color? backgroundColor,
  6. Color? shadowColor,
  7. Color? iconColor,
})

Implementation

const NeoIconButton({
  super.key,
  required this.icon,
  this.onPressed,
  this.size = 56,
  this.backgroundColor,
  this.shadowColor,
  this.iconColor,
});