CustomIconButton constructor

CustomIconButton(
  1. {required VoidCallback onPressed,
  2. required IconData icon,
  3. required IconButtonSize size,
  4. required bool isCircularButton,
  5. Color? iconColor,
  6. Color? backgroundColor}
)

Implementation

CustomIconButton({
  required this.onPressed,
  required this.icon,
  required this.size,
  required this.isCircularButton,
  this.iconColor,
  this.backgroundColor,
});