copyWith method
Implementation
PartnerEndCustomerBillingContact copyWith(
{String? givenName, String? familyName, String? email}) {
return PartnerEndCustomerBillingContact(
givenName: givenName ?? this.givenName,
familyName: familyName ?? this.familyName,
email: email ?? this.email);
}