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