computeCommentsList function

Future<CommentsList?> computeCommentsList(
  1. CommentsList? commentsList
)

Used to not block the UI isolate.

Implementation

Future<CommentsList?> computeCommentsList(CommentsList? commentsList) async {
  return commentsList?.nextPage();
}