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