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