FeedbackData constructor

FeedbackData({
  1. String? batch,
  2. String? businessActivity,
  3. String? category,
  4. String? description,
  5. required FeedbackDataGeo geo,
  6. Map<String, Object>? metadata,
  7. required String place,
  8. String? priority,
  9. String? reporter,
  10. required FeedbackDataVisibilityEnum visibility,
})

Returns a new FeedbackData instance.

Implementation

FeedbackData({
  this.batch,
  this.businessActivity,
  this.category,
  this.description,
  required this.geo,
  this.metadata,
  required this.place,
  this.priority,
  this.reporter,
  required this.visibility,
});