getSingleCommentById static method

Future<PeamanComment> getSingleCommentById({
  1. required String feedId,
  2. required String commentId,
})

Implementation

static Future<PeamanComment> getSingleCommentById({
  required final String feedId,
  required final String commentId,
}) {
  PeamanCommonHelper.printListening(text: 'commentById');
  return FeedProvider().getSingleCommentById(
    feedId: feedId,
    commentId: commentId,
  );
}