CreditPayStubEmployee constructor

CreditPayStubEmployee({
  1. required CreditPayStubAddress address,
  2. required String? name,
  3. required String? maritalStatus,
  4. required PayStubTaxpayerID taxpayerId,
})

Implementation

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