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