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