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