getAllProjectAvatars method

Future<ProjectAvatars> getAllProjectAvatars(
  1. String projectIdOrKey
)

Returns all project avatars, grouped by system and custom avatars.

This operation can be accessed anonymously.

Permissions required: Browse projects project permission for the project.

Implementation

Future<ProjectAvatars> getAllProjectAvatars(String projectIdOrKey) async {
  return ProjectAvatars.fromJson(await _client.send(
    'get',
    'rest/api/3/project/{projectIdOrKey}/avatars',
    pathParameters: {
      'projectIdOrKey': projectIdOrKey,
    },
  ));
}