CommentModel constructor

CommentModel(
  1. String avatar,
  2. String name,
  3. dynamic titleColor,
  4. String comment,
  5. String time,
  6. bool liked,
  7. int likeCount,
  8. List<ReplyModel> replies,
)

Implementation

CommentModel(
  this.avatar,
  this.name,
  this.titleColor,
  this.comment,
  this.time,
  this.liked,
  this.likeCount,
  this.replies,
);