Employee constructor
Employee({
- required PaystubAddress address,
- required String? name,
- String? maritalStatus,
- TaxpayerID? taxpayerId,
Implementation
Employee({
required this.address,
required this.name,
this.maritalStatus,
this.taxpayerId,
});