GajIconButton constructor

const GajIconButton({
  1. Key? key,
  2. required Widget icon,
  3. Color? borderColor,
  4. double? borderRadius,
  5. double? borderWidth,
  6. double? buttonSize,
  7. Color? fillColor,
  8. Color? disabledColor,
  9. dynamic onPressed()?,
  10. bool showLoadingIndicator = false,
})

Implementation

const GajIconButton({
  Key? key,
  required this.icon,
  this.borderColor,
  this.borderRadius,
  this.borderWidth,
  this.buttonSize,
  this.fillColor,
  this.disabledColor,
  this.onPressed,
  this.showLoadingIndicator = false,
}) : super(key: key);