deleteSpacePropertyById method
Deletes a space property by its id.
Permissions required: Permission to access the Confluence site ('Can use' global permission) and 'Admin' permission for the space.
Implementation
Future<void> deleteSpacePropertyById(
{required int spaceId, required int propertyId}) async {
await _client.send(
'delete',
'spaces/{space-id}/properties/{property-id}',
pathParameters: {
'space-id': '$spaceId',
'property-id': '$propertyId',
},
);
}