copyWith method
Implementation
DepositSwitchTargetUser copyWith(
{String? givenName,
String? familyName,
String? phone,
String? email,
DepositSwitchAddressData? address,
String? taxPayerId}) {
return DepositSwitchTargetUser(
givenName: givenName ?? this.givenName,
familyName: familyName ?? this.familyName,
phone: phone ?? this.phone,
email: email ?? this.email,
address: address ?? this.address,
taxPayerId: taxPayerId ?? this.taxPayerId);
}