CommentsModel constructor

CommentsModel(
  1. {String? profileImage,
  2. String? userName,
  3. String? timeAgo,
  4. String? commentData,
  5. int? totalRepliesCount,
  6. bool? isLiked,
  7. int? likeCount,
  8. SubCommentModel? subCommentData}
)

Implementation

CommentsModel({this.profileImage, this.userName, this.timeAgo, this.commentData, this.totalRepliesCount, this.isLiked, this.likeCount, this.subCommentData});