getAllSystemAvatars method
Returns a list of system avatar details by owner type, where the owner types are issue type, project, or user.
This operation can be accessed anonymously.
Permissions required: None.
Implementation
Future<SystemAvatars> getAllSystemAvatars(String type) async {
return SystemAvatars.fromJson(await _client.send(
'get',
'rest/api/3/avatar/{type}/system',
pathParameters: {
'type': type,
},
));
}