DSI_PRIMARY_BUTTON constructor

DSI_PRIMARY_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,
})

Implementation

DSI_PRIMARY_BUTTON({
  super.key,
  required this.title,
  this.borderradius,
  this.buttonColor,
  this.height,
  this.textColor,
  this.width,
  required this.onPressed,
  this.alignment,
});