commentList top-level property
getter/setter pair
Implementation
List<CommentsModel> commentList = [
CommentsModel(profileImage: ic_profile1, userName: "nadia_greenaway", timeAgo: "12w", commentData: "was there last night 🥲still the best day", isLiked: false, likeCount: 4, totalRepliesCount: 7, subCommentData: null),
CommentsModel(
profileImage: ic_profile2,
userName: "fiketours",
timeAgo: "12w",
commentData: "Dom brought out @bakarrrr tonight as his special guest! Woohoo!",
isLiked: true,
likeCount: 55,
totalRepliesCount: 7,
subCommentData: SubCommentModel(profileImage: ic_profile4, userName: "__.neeti__", timeAgo: "11w", commentData: "Yes! its going all over my head", isLiked: false, totalRepliesCount: 7, likeCount: null)),
CommentsModel(profileImage: ic_profile3, userName: "_kaylee.newton_", timeAgo: "12w", commentData: "so annoyed they didn’t bring him out last night ðŸ˜", isLiked: false, likeCount: 10, totalRepliesCount: null, subCommentData: null),
CommentsModel(profileImage: ic_profile4, userName: "__s.gotera", timeAgo: "12w", commentData: "honestlyyy we would’ve screamed even more 😂", isLiked: true, likeCount: 12, totalRepliesCount: null, subCommentData: null),
CommentsModel(profileImage: ic_profile2, userName: "felix", timeAgo: "12w", commentData: "was there last night 🥲still the best day", isLiked: false, likeCount: 100, totalRepliesCount: null, subCommentData: null),
CommentsModel(profileImage: ic_profile1, userName: "fiketours jsh", timeAgo: "12w", commentData: "honestlyyy we would’ve screamed even more 😂", isLiked: false, likeCount: 800, totalRepliesCount: 7, subCommentData: null),
];