AlertConfirmCancel constructor

const AlertConfirmCancel({
  1. Key? key,
  2. String? text,
  3. Widget? contentText,
  4. GestureTapCallback? confirmTap,
  5. GestureTapCallback? cancelTap,
  6. Widget? cancel,
  7. Widget? confirm,
  8. Widget? title,
  9. Widget? content,
  10. bool autoClose = true,
  11. String? confirmText,
  12. String? cancelText,
  13. String? titleText,
})

Implementation

const AlertConfirmCancel({
  super.key,
  this.text,
  this.contentText,
  this.confirmTap,
  this.cancelTap,
  this.cancel,
  this.confirm,
  this.title,
  this.content,
  this.autoClose = true,
  this.confirmText,
  this.cancelText,
  this.titleText,
});