Feedback constructor

Feedback({
  1. FeedbackEmbedded? embedded,
  2. FeedbackLinks? links,
  3. DateTime? createdAt,
  4. String? description,
  5. FeedbackGeoCoordinates? geoCoordinates,
  6. String? id,
  7. Map<String, Object>? metadata,
  8. bool? public,
  9. String? type,
  10. DateTime? updatedAt,
  11. FeedbackVisibilityEnum? visibility,
})

Returns a new Feedback instance.

Implementation

Feedback({
  this.embedded,
  this.links,
  this.createdAt,
  this.description,
  this.geoCoordinates,
  this.id,
  this.metadata,
  this.public,
  this.type,
  this.updatedAt,
  this.visibility,
});