copyWithWrapped method

PartnerEndCustomerBillingContact copyWithWrapped({
  1. Wrapped<String?>? givenName,
  2. Wrapped<String?>? familyName,
  3. Wrapped<String?>? email,
})

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));
}