CupertinoDialog constructor

const CupertinoDialog({
  1. Key? key,
  2. required bool isActionInProgress,
  3. required dynamic onCancelPressed(),
  4. required dynamic onActionButtonPressed(),
  5. String? title,
  6. String? content,
  7. String? confirmationButtonLabel,
  8. String? cancelButtonLabel,
  9. AdaptiveProgressDialogStyle? adaptiveProgressDialogStyle,
})

Implementation

const CupertinoDialog({
  super.key,
  required this.isActionInProgress,
  required this.onCancelPressed,
  required this.onActionButtonPressed,
  this.title,
  this.content,
  this.confirmationButtonLabel,
  this.cancelButtonLabel,
  this.adaptiveProgressDialogStyle,
});