NiceFeedbackForm constructor

const NiceFeedbackForm({
  1. Key? key,
  2. void onSubmit(
    1. NiceFeedbackData feedback
    )?,
  3. VoidCallback? onCancel,
  4. bool showRating = true,
  5. bool showCategory = true,
  6. bool showEmail = false,
  7. bool showAttachment = false,
  8. List<String>? categories,
  9. String? submitLabel,
  10. String? placeholderText,
  11. int? minRating,
})

Implementation

const NiceFeedbackForm({
  super.key,
  this.onSubmit,
  this.onCancel,
  this.showRating = true,
  this.showCategory = true,
  this.showEmail = false,
  this.showAttachment = false,
  this.categories,
  this.submitLabel,
  this.placeholderText,
  this.minRating,
});