Comment constructor

Comment({
  1. required String commentId,
  2. User? contributor,
  3. DateTime? createdTimestamp,
  4. String? parentId,
  5. String? recipientId,
  6. CommentStatusType? status,
  7. String? text,
  8. String? threadId,
  9. CommentVisibilityType? visibility,
})

Implementation

Comment({
  required this.commentId,
  this.contributor,
  this.createdTimestamp,
  this.parentId,
  this.recipientId,
  this.status,
  this.text,
  this.threadId,
  this.visibility,
});