copyWith method

PartnerEndCustomerBillingContact copyWith({
  1. String? givenName,
  2. String? familyName,
  3. String? email,
})

Implementation

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