ConfirmationDialog constructor

const ConfirmationDialog({
  1. required ConfirmationDialogTexts texts,
  2. required ConfirmationDialogOptions options,
  3. Key? key,
})

Dialog overlay whice presents a confirm and cancel button.

Returns true if the user confirms the action, false otherwise.

Implementation

const ConfirmationDialog({
  required this.texts,
  required this.options,
  super.key,
});