getComment method

Future<CommentResponse> getComment(
  1. String id
)

Returns a single comment and indicates how many replies it has.

Use /comments/:id/replies to get the actual replies.

id - A specific comment ID

😁 Emojis

Implementation

Future<CommentResponse> getComment(String id) async {
  return await _manager._get<CommentResponse>("comments/$id");
}