W2 constructor

W2({
  1. PaystubEmployer? employer,
  2. Employee? employee,
  3. String? taxYear,
  4. String? employerIdNumber,
  5. String? wagesTipsOtherComp,
  6. String? federalIncomeTaxWithheld,
  7. String? socialSecurityWages,
  8. String? socialSecurityTaxWithheld,
  9. String? medicareWagesAndTips,
  10. String? medicareTaxWithheld,
  11. String? socialSecurityTips,
  12. String? allocatedTips,
  13. String? box9,
  14. String? dependentCareBenefits,
  15. String? nonqualifiedPlans,
  16. List<W2Box12>? box12,
  17. String? statutoryEmployee,
  18. String? retirementPlan,
  19. String? thirdPartySickPay,
  20. String? other,
  21. List<W2StateAndLocalWages>? stateAndLocalWages,
})

Implementation

W2({
  this.employer,
  this.employee,
  this.taxYear,
  this.employerIdNumber,
  this.wagesTipsOtherComp,
  this.federalIncomeTaxWithheld,
  this.socialSecurityWages,
  this.socialSecurityTaxWithheld,
  this.medicareWagesAndTips,
  this.medicareTaxWithheld,
  this.socialSecurityTips,
  this.allocatedTips,
  this.box9,
  this.dependentCareBenefits,
  this.nonqualifiedPlans,
  this.box12,
  this.statutoryEmployee,
  this.retirementPlan,
  this.thirdPartySickPay,
  this.other,
  this.stateAndLocalWages,
});