getReplies static method

Future<CommentsClient?> getReplies(
  1. YoutubeHttpClient httpClient,
  2. String token
)

Implementation

static Future<CommentsClient?> getReplies(
  YoutubeHttpClient httpClient,
  String token,
) async {
  final data = await httpClient.sendContinuation('next', token);
  return CommentsClient(data);
}