DeleteQuestionDialog constructor

const DeleteQuestionDialog({
  1. Key? key,
  2. required VoidCallback onSuccess,
  3. String deleteWord = "Löschen",
  4. int count = 1,
  5. List<String>? whatsDeleted,
})

Implementation

const DeleteQuestionDialog({
  Key? key,
  required this.onSuccess,
  this.deleteWord = "Löschen",
  this.count = 1,
  this.whatsDeleted,
}) : super(key: key);