getInlineLikeCount method
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?>;
}