copyWithWrapped method
Implementation
PaystubEmployer copyWithWrapped(
{Wrapped<PaystubAddress?>? address, Wrapped<String?>? name}) {
return PaystubEmployer(
address: (address != null ? address.value : this.address),
name: (name != null ? name.value : this.name));
}