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