copyWithWrapped method
Implementation
PartnerEndCustomerAssetsUnderManagement copyWithWrapped(
{Wrapped<double>? amount, Wrapped<String>? isoCurrencyCode}) {
return PartnerEndCustomerAssetsUnderManagement(
amount: (amount != null ? amount.value : this.amount),
isoCurrencyCode: (isoCurrencyCode != null
? isoCurrencyCode.value
: this.isoCurrencyCode));
}