deleteNotificationScheme method
Deletes a notification scheme.
Permissions required: Administer Jira global permission.
Implementation
Future<dynamic> deleteNotificationScheme(String notificationSchemeId) async {
return await _client.send(
'delete',
'rest/api/3/notificationscheme/{notificationSchemeId}',
pathParameters: {
'notificationSchemeId': notificationSchemeId,
},
);
}