Employee constructor

Employee({
  1. String? title,
  2. String? suffix,
  3. String? printOnCheckName,
  4. EmailAddress? primaryEmailAddr,
  5. TelephoneNumber? mobile,
  6. String? middleName,
  7. String? givenName,
  8. String? familyName,
  9. String? displayName,
  10. bool? active,
  11. ModificationMetaData? metaData,
  12. String? syncToken,
  13. TelephoneNumber? primaryPhone,
  14. String? id,
  15. bool? billableTime,
  16. double? billRate,
  17. String? birthDate,
  18. double? costRate,
  19. String? employeeNumber,
  20. String? gender,
  21. String? hiredDate,
  22. bool? organization,
  23. PhysicalAddress? primaryAddr,
  24. String? releasedDate,
  25. String? ssn,
  26. String? v4IDPseudonym,
})

Implementation

Employee({
  this.title, this.suffix, this.printOnCheckName, this.primaryEmailAddr,
  this.mobile, this.middleName, this.givenName, this.familyName,
  this.displayName, this.active, this.metaData, this.syncToken,
  this.primaryPhone, this.id, this.billableTime, this.billRate,
  this.birthDate, this.costRate, this.employeeNumber, this.gender,
  this.hiredDate, this.organization, this.primaryAddr, this.releasedDate,
  this.ssn, this.v4IDPseudonym
});