FDialogConfirm constructor
const
FDialogConfirm({
- Key? key,
- required VoidCallback onConfirm,
- required VoidCallback onCancel,
- double? width = 240,
- double? height = 340,
- String? content,
Implementation
const FDialogConfirm({
super.key,
required this.onConfirm,
required this.onCancel,
this.width = 240,
this.height = 340,
this.content,
});