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