removeLikeComment method

Future<void> removeLikeComment(
  1. String id
)

Remove a like on a comment.

id - A specific comment ID

🔒 OAuth Required

Implementation

Future<void> removeLikeComment(String id) async {
  return await _manager._authenticatedDelete("comments/$id/like");
}