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