copyWithWrapped method

PartnerEndCustomerAssetsUnderManagement copyWithWrapped({
  1. Wrapped<double>? amount,
  2. Wrapped<String>? isoCurrencyCode,
})

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));
}