getSingleCommentByIdStream static method

Stream<PeamanComment> getSingleCommentByIdStream({
  1. required String feedId,
  2. required String commentId,
})

Implementation

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