NiceFeedbackDialog constructor

const NiceFeedbackDialog({
  1. Key? key,
  2. String title = 'Send Feedback',
  3. String? description,
  4. void onSubmit(
    1. NiceFeedbackData feedback
    )?,
  5. VoidCallback? onCancel,
  6. bool showRating = true,
  7. bool showCategory = false,
  8. List<String>? categories,
})

Implementation

const NiceFeedbackDialog({
  super.key,
  this.title = 'Send Feedback',
  this.description,
  this.onSubmit,
  this.onCancel,
  this.showRating = true,
  this.showCategory = false,
  this.categories,
});