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