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