CommentReply constructor

const CommentReply({
  1. String? name,
  2. String? profileImageUrl,
  3. String? comment,
  4. String? postedTime,
})

Implementation

const CommentReply({
  this.name,
  this.profileImageUrl,
  this.comment,
  this.postedTime,
});