CustomSqButton constructor

const CustomSqButton({
  1. Key? key,
  2. GestureTapCallback? onPressed,
  3. Color color = AppColorsLH.lhSysLightOnSurface,
  4. required String buttonName,
  5. Color? buttonTextColor,
  6. Widget? prevWidget,
  7. bool boxShadowOn = false,
  8. double radius = 8,
  9. BoxBorder? border,
  10. List<BoxShadow>? boxShadow,
  11. FontWeight? fontWeight,
})

Implementation

const CustomSqButton({
  super.key,
  this.onPressed,
  this.color = AppColorsLH.lhSysLightOnSurface,
  required this.buttonName,
  this.buttonTextColor,
  this.prevWidget,
  this.boxShadowOn = false,
  this.radius = 8,
  this.border,
  this.boxShadow,
  this.fontWeight,
});