FDialogConfirm constructor

const FDialogConfirm({
  1. Key? key,
  2. required VoidCallback onConfirm,
  3. required VoidCallback onCancel,
  4. double? width = 240,
  5. double? height = 340,
  6. String? content,
})

Implementation

const FDialogConfirm({
  super.key,
  required this.onConfirm,
  required this.onCancel,
  this.width = 240,
  this.height = 340,
  this.content,
});