copyWith method
Implementation
PaymentAmountToRefund copyWith(
{enums.PaymentAmountCurrency? currency, double? value}) {
return PaymentAmountToRefund(
currency: currency ?? this.currency, value: value ?? this.value);
}
PaymentAmountToRefund copyWith(
{enums.PaymentAmountCurrency? currency, double? value}) {
return PaymentAmountToRefund(
currency: currency ?? this.currency, value: value ?? this.value);
}