getFooterLikeCount method
Returns the count of likes of specific footer comment.
Permissions required: Permission to view the content of the page/blogpost and its corresponding space.
Implementation
Future<Map<String, dynamic>> getFooterLikeCount(int id) async {
return await _client.send(
'get',
'footer-comments/{id}/likes/count',
pathParameters: {
'id': '$id',
},
) as Map<String, Object?>;
}