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