CommentReply constructor

CommentReply({
  1. String id = "",
  2. String profileId = "",
  3. String text = "",
  4. int likeCount = 0,
  5. AppMediaType? mediaType,
  6. bool isHidden = false,
  7. int createdTime = 0,
  8. int modifiedTime = 0,
})

Implementation

CommentReply({
  this.id = "",
  this.profileId = "",
  this.text = "",
  this.likeCount = 0,
  this.mediaType,
  this.isHidden = false,
  this.createdTime = 0,
  this.modifiedTime = 0
});