CustomIconButtonWidget constructor

CustomIconButtonWidget({
  1. Key? key,
  2. required String buttonText,
  3. required String iconPath,
  4. required VoidCallback onTap,
  5. String? font,
  6. double height = 50,
  7. double radius = 8,
  8. double width = 50,
  9. double fontSize = 16,
  10. Color? buttonTextColor,
  11. Color? borderColor,
  12. bool disabled = false,
  13. Color? buttonColor,
})

Implementation

CustomIconButtonWidget(
    {Key? key,
    required this.buttonText,
    required this.iconPath,
    required this.onTap,
    this.font,
    this.height = 50,
    this.radius = 8,
    this.width = 50,
    this.fontSize = 16,
    this.buttonTextColor,
    this.borderColor,
    this.disabled = false,
    this.buttonColor})
    : super(key: key);