deleteUiModification method
Deletes a UI modification. All the contexts that belong to the UI modification are deleted too. UI modification can only be deleted by Forge apps.
Permissions required: None.
Implementation
Future<dynamic> deleteUiModification(String uiModificationId) async {
return await _client.send(
'delete',
'rest/api/3/uiModifications/{uiModificationId}',
pathParameters: {
'uiModificationId': uiModificationId,
},
);
}