Comment constructor
Comment({
- required String commentId,
- User? contributor,
- DateTime? createdTimestamp,
- String? parentId,
- String? recipientId,
- CommentStatusType? status,
- String? text,
- String? threadId,
- CommentVisibilityType? visibility,
Implementation
Comment({
required this.commentId,
this.contributor,
this.createdTimestamp,
this.parentId,
this.recipientId,
this.status,
this.text,
this.threadId,
this.visibility,
});