Employee constructor

Employee({
  1. required PaystubAddress address,
  2. required String? name,
  3. String? maritalStatus,
  4. TaxpayerID? taxpayerId,
})

Implementation

Employee({
  required this.address,
  required this.name,
  this.maritalStatus,
  this.taxpayerId,
});