copyWith method
Implementation
PartnerEndCustomerAssetsUnderManagement copyWith(
{double? amount, String? isoCurrencyCode}) {
return PartnerEndCustomerAssetsUnderManagement(
amount: amount ?? this.amount,
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode);
}