CustomLoaderButton constructor

const CustomLoaderButton({
  1. Key? key,
  2. String? title,
  3. required Color buttonColor,
  4. Color? buttonTextColor,
  5. double? buttonTextSize,
  6. required bool isIconButton,
  7. required dynamic onTap(),
  8. double? width,
  9. double? height,
  10. IconData? icon,
  11. Color? iconColor,
  12. double? iconSize,
  13. required Color loaderColor,
})

Implementation

const CustomLoaderButton({
  super.key,
  this.title,
  required this.buttonColor,
  this.buttonTextColor,
  this.buttonTextSize,
  required this.isIconButton,
  required this.onTap,
  this.width,
  this.height,
  this.icon,
  this.iconColor,
  this.iconSize,
  required this.loaderColor
});