getGroupByGroupId method
Returns a user group for a given group id.
Permissions required: Permission to access the Confluence site ('Can use' global permission).
Implementation
Future<Group> getGroupByGroupId(String id) async {
return Group.fromJson(await _client.send(
'get',
'wiki/rest/api/group/by-id',
queryParameters: {
'id': id,
},
));
}