ConfirmationDialog constructor

const ConfirmationDialog({
  1. Key? key,
  2. KillSwitchTheme? theme,
  3. String? title,
  4. String? message,
  5. String? confirmButtonText,
  6. String? cancelButtonText,
})

Implementation

const ConfirmationDialog({
  super.key,
  this.theme,
  this.title,
  this.message,
  this.confirmButtonText,
  this.cancelButtonText,
});