removeModules method
Remove all or a list of modules registered by the calling app.
Permissions required: Only Connect apps can make this request.
Implementation
Future<void> removeModules(List<String> moduleKey) async {
await _client.send(
'delete',
'atlassian-connect/1/app/module/dynamic',
queryParameters: {
'moduleKey': moduleKey.map((e) => e).join(','),
},
);
}