deleteLabelFromSpace method
Implementation
Future<void> deleteLabelFromSpace(
{required String spaceKey, required String name, String? prefix}) async {
await _client.send(
'delete',
'wiki/rest/api/space/{spaceKey}/label',
pathParameters: {
'spaceKey': spaceKey,
},
queryParameters: {
'name': name,
if (prefix != null) 'prefix': prefix,
},
);
}