ConfigOutlinedButton constructor

const ConfigOutlinedButton({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. void onPressed()?,
  5. required String label,
  6. Color? brdcolour,
  7. Color? textcolour,
  8. Color? bgColour,
  9. double? radius,
  10. double? borderWidth,
  11. EdgeInsetsGeometry? padding,
  12. bool isLoading = false,
  13. bool enabled = true,
  14. IconData? prefixIcon,
  15. IconData? suffixIcon,
  16. double? iconSize,
  17. FontWeight? fontWeight,
  18. double? fontSize,
  19. bool enableDebounce = true,
  20. Duration debounceDuration = const Duration(milliseconds: 300),
  21. String? semanticLabel,
  22. bool? enableSecurity,
})

Implementation

const ConfigOutlinedButton({
  super.key,
  this.width,
  this.height,
  this.onPressed,
  required this.label,
  this.brdcolour,
  this.textcolour,
  this.bgColour,
  this.radius,
  this.borderWidth,
  this.padding,
  this.isLoading = false,
  this.enabled = true,
  this.prefixIcon,
  this.suffixIcon,
  this.iconSize,
  this.fontWeight,
  this.fontSize,
  this.enableDebounce = true,
  this.debounceDuration = const Duration(milliseconds: 300),
  this.semanticLabel,
  this.enableSecurity,
});