UserFeedbackReport constructor

UserFeedbackReport({
  1. Map<String, int> countByRating = const {},
  2. required int unreportedCount,
})

Returns a new UserFeedbackReport instance.

Implementation

UserFeedbackReport({
  this.countByRating = const {},
  required this.unreportedCount,
});