getScailoClientForProductionPlansService function
Get the client to access the Production Plans service
Implementation
ProductionPlansServiceClient getScailoClientForProductionPlansService() {
return ProductionPlansServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}