commentSection function

  1. @riverpod
Stream<List<CommentModel>> commentSection(
  1. dynamic ref,
  2. String commentSectionID
)

Implementation

@riverpod
Stream<List<CommentModel>> commentSection(
  CommentSectionRef ref,
  String commentSectionID,
) =>
    ref.read(firestoreServiceProvider).getCommentStream(commentSectionID);