CommentPost constructor

CommentPost({
  1. String articleId = '',
  2. bool isAnonymous = false,
  3. bool isVisible = false,
  4. String content = '',
  5. String replyId = '',
})

Implementation

CommentPost({
  this.articleId = '',
  this.isAnonymous = false,
  this.isVisible = false,
  this.content = '',
  this.replyId = '',
});