getPermittedProjects method
Returns all the projects where the user is granted a list of project permissions.
This operation can be accessed anonymously.
Permissions required: None.
Implementation
Future<PermittedProjects> getPermittedProjects(
{required PermissionsKeysBean body}) async {
return PermittedProjects.fromJson(await _client.send(
'post',
'rest/api/3/permissions/project',
body: body.toJson(),
));
}