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