CommonDialog constructor

const CommonDialog({
  1. dynamic contentWidget,
  2. dynamic contentStr,
  3. dynamic noFun,
  4. dynamic yesFun,
  5. dynamic noStr,
  6. dynamic yesStr,
  7. dynamic titleStr,
  8. dynamic canCancel = true,
  9. dynamic hintNo = false,
  10. dynamic hintYes = false,
  11. dynamic clickYesToDissmiss = true,
  12. dynamic clickNoToDissmiss = true,
  13. Key? key,
})

Implementation

const CommonDialog({
  this.contentWidget,
  this.contentStr,
  this.noFun,
  this.yesFun,
  this.noStr,
  this.yesStr,
  this.titleStr,
  this.canCancel = true,
  this.hintNo = false,
  this.hintYes = false,
  this.clickYesToDissmiss = true,
  this.clickNoToDissmiss = true,
  Key? key,
}) : super(key: key);