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