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