updateCommentPropertiesCount static method

Future<void> updateCommentPropertiesCount({
  1. required String feedId,
  2. required String commentId,
  3. int reactionsCount = 0,
  4. int repliesCount = 0,
})

Implementation

static Future<void> updateCommentPropertiesCount({
  required final String feedId,
  required final String commentId,
  final int reactionsCount = 0,
  final int repliesCount = 0,
}) {
  return FeedProvider().updateCommentPropertiesCount(
    feedId: feedId,
    commentId: commentId,
    reactionsCount: reactionsCount,
    repliesCount: repliesCount,
  );
}