getProject method
Returns information about a project.
Parameter name :
The name of the project in the space.
Parameter spaceName :
The name of the space.
Implementation
Future<GetProjectResponse> getProject({
required String name,
required String spaceName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/v1/spaces/${Uri.encodeComponent(spaceName)}/projects/${Uri.encodeComponent(name)}',
exceptionFnMap: _exceptionFns,
);
return GetProjectResponse.fromJson(response);
}