NiceFeedbackData constructor

const NiceFeedbackData({
  1. required double rating,
  2. String? category,
  3. required String feedback,
  4. String? email,
  5. List<String>? attachments,
})

Implementation

const NiceFeedbackData({
  required this.rating,
  this.category,
  required this.feedback,
  this.email,
  this.attachments,
});