CommentDraft constructor

const CommentDraft({
  1. required String body,
  2. String? authorName,
  3. String? authorEmail,
  4. String? authorAvatarUrl,
  5. String? parentId,
  6. String? replyToClerkId,
  7. String? replyToAuthorName,
})

Implementation

const CommentDraft({
  required this.body,
  this.authorName,
  this.authorEmail,
  this.authorAvatarUrl,
  this.parentId,
  this.replyToClerkId,
  this.replyToAuthorName,
});