DSI_ICON_BUTTON constructor

DSI_ICON_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 dynamic icon,
  9. required Function onPressed,
  10. dynamic iconSize,
})

Implementation

DSI_ICON_BUTTON({
  super.key,
  required this.title,
  this.borderradius,
  this.buttonColor,
  this.height,
  this.textColor,
  this.width,
  required this.icon,
  required this.onPressed,
  this.iconSize,
});