SubCommentModel constructor

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

Implementation

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