deleteFooterComment method
Deletes a footer comment. This is a permanent deletion and cannot be reverted.
Permissions required: Permission to view the content of the page or blogpost and its corresponding space. Permission to delete comments in the space.
Implementation
Future<void> deleteFooterComment(int commentId) async {
await _client.send(
'delete',
'footer-comments/{comment-id}',
pathParameters: {
'comment-id': '$commentId',
},
);
}