getCLIConfigForProject method

Future<String> getCLIConfigForProject(
  1. String userId,
  2. String projectId
)

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;
}