XAlertDialog constructor

XAlertDialog({
  1. String? titleText,
  2. TextStyle? styleTitle,
  3. dynamic onPressedYes()?,
  4. dynamic onPressedNo()?,
  5. double? heightActionsBTNArea = 40,
  6. EdgeInsetsGeometry? paddingActionsBTNArea,
  7. Widget? contentActionsBTNArea,
  8. String? labelBTNyes,
  9. double? heightAlertDialog,
  10. String? labelBTNno,
  11. Color? colorYes,
  12. Color? colorNo,
  13. Widget? childOfAlert,
  14. Widget? titleWidget,
  15. TextAlign? textAlignTitle,
})

Implementation

XAlertDialog({
  this.titleText,
  this.styleTitle,
  this.onPressedYes,
  this.onPressedNo,
  this.heightActionsBTNArea = 40,
  this.paddingActionsBTNArea,
  this.contentActionsBTNArea,
  this.labelBTNyes,
  this.heightAlertDialog,
  this.labelBTNno,
  this.colorYes,
  this.colorNo,
  this.childOfAlert,
  this.titleWidget,
  this.textAlignTitle,
});