getInlineLikeCount method

Future<Map<String, dynamic>> getInlineLikeCount(
  1. int id
)

Returns the count of likes of specific inline comment.

Permissions required: Permission to view the content of the page/blogpost and its corresponding space.

Implementation

Future<Map<String, dynamic>> getInlineLikeCount(int id) async {
  return await _client.send(
    'get',
    'inline-comments/{id}/likes/count',
    pathParameters: {
      'id': '$id',
    },
  ) as Map<String, Object?>;
}