getScailoClientForProjectsService function

ProjectsServiceClient getScailoClientForProjectsService()

Get the client to access the Projects service

Implementation

ProjectsServiceClient getScailoClientForProjectsService() {
  return ProjectsServiceClient(
    getClientChannel(),
    options: CallOptions(
      metadata: {'auth_token': getAuthToken()},
      timeout: const Duration(seconds: 10),
    ),
  );
}