CommentMetadata constructor

CommentMetadata({
  1. String? commentId,
  2. CommentStatusType? commentStatus,
  3. User? contributor,
  4. DateTime? createdTimestamp,
  5. String? recipientId,
})

Implementation

CommentMetadata({
  this.commentId,
  this.commentStatus,
  this.contributor,
  this.createdTimestamp,
  this.recipientId,
});