repliesProvider top-level property

FutureProviderFamily<PagingController<int, Comment>?, Comment> repliesProvider
final

A global Provider for getting the paging controller for replies for a comment.

Implementation

final repliesProvider =
    FutureProvider.family<PagingController<int, Comment>?, Comment>(
        (ref, comment) {
  return PlayerYoutubeSource.instance.getRepliesForComment(comment);
});