getLikeCount method

dynamic getLikeCount()

Implementation

getLikeCount() {
  int count = 0;
  commentLikeCounts.forEach((element) {
    count += element.emojiCount;
  });

  return count;
}