ConfirmCancelActionDialog.cupertino constructor

const ConfirmCancelActionDialog.cupertino({
  1. Key? key,
  2. Widget? cancel,
  3. String? cancelText = '取消',
  4. GestureTapCallback? onCancelTap,
  5. Widget? confirm,
  6. String? confirmText = '确定',
  7. GestureTapCallback? onConfirmTap,
  8. String? contentText,
  9. Widget? content,
  10. String? titleText,
  11. Widget? title,
  12. bool autoClose = true,
  13. List<Widget>? actions,
})

Implementation

const ConfirmCancelActionDialog.cupertino({
  super.key,
  this.cancel,
  this.cancelText = '取消',
  this.onCancelTap,
  super.confirm,
  super.confirmText = '确定',
  super.onConfirmTap,
  super.contentText,
  super.content,
  super.titleText,
  super.title,
  super.autoClose = true,
  super.actions,
}) : super.cupertino();