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