getCLIConfigForProject method
Implementation
Future<String> getCLIConfigForProject(String userId, String projectId) async {
final result = await _configServiceClient.getCLIConfigForProject(
ProjectId(id: projectId),
options: CallOptions(
metadata: {
'authentication': userId,
},
),
);
return result.data;
}