getLikeCount method

int getLikeCount()

Implementation

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

  return count;
}