CDialog constructor
CDialog({
- Key? key,
- String? title,
- VoidCallback? onPressed,
- VoidCallback? onCanceled,
- String? text,
- CDialogType type = CDialogType.alert,
- String? confirmText,
- String? cancelText,
Implementation
CDialog({
super.key,
this.title,
this.onPressed,
this.onCanceled,
this.text,
this.type = CDialogType.alert,
this.confirmText,
this.cancelText,
});