AppIconButton constructor

const AppIconButton({
  1. required VoidCallback onTap,
  2. required Color backgroundColor,
  3. required Widget icon,
  4. Color? borderColor,
  5. Key? key,
})

Implementation

const AppIconButton({
  required this.onTap,
  required this.backgroundColor,
  required this.icon,
  this.borderColor,
  super.key,
});