deleteSpaceProperty method
Deprecated, use Confluence's v2 API.
Deletes a space property.
Permissions required: ‘Admin’ permission for the space.
Implementation
@deprecated
Future<void> deleteSpaceProperty(
{required String spaceKey, required String key}) async {
await _client.send(
'delete',
'wiki/rest/api/space/{spaceKey}/property/{key}',
pathParameters: {
'spaceKey': spaceKey,
'key': key,
},
);
}