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