DSI_SECONDARY_BUTTON constructor

DSI_SECONDARY_BUTTON({
  1. Key? key,
  2. required String title,
  3. dynamic borderradius,
  4. dynamic buttonColor,
  5. dynamic height,
  6. dynamic textColor,
  7. dynamic width,
  8. required Function onPressed,
  9. dynamic alignment,
  10. dynamic border,
  11. dynamic fontSize,
  12. dynamic fontWeight,
})

Implementation

DSI_SECONDARY_BUTTON({
  super.key,
  required this.title,
  this.borderradius,
  this.buttonColor,
  this.height,
  this.textColor,
  this.width,
  required this.onPressed,
  this.alignment,
  this.border,
  this.fontSize,
  this.fontWeight,
});