copyWithWrapped method
Implementation
PartnerEndCustomerBillingContact copyWithWrapped(
{Wrapped<String?>? givenName,
Wrapped<String?>? familyName,
Wrapped<String?>? email}) {
return PartnerEndCustomerBillingContact(
givenName: (givenName != null ? givenName.value : this.givenName),
familyName: (familyName != null ? familyName.value : this.familyName),
email: (email != null ? email.value : this.email));
}