copyWithWrapped method
      
PaymentAmountRefunded
copyWithWrapped({ 
    
    
- Wrapped<PaymentAmountCurrency> ? currency,
- Wrapped<double> ? value,
Implementation
PaymentAmountRefunded copyWithWrapped(
    {Wrapped<enums.PaymentAmountCurrency>? currency,
    Wrapped<double>? value}) {
  return PaymentAmountRefunded(
      currency: (currency != null ? currency.value : this.currency),
      value: (value != null ? value.value : this.value));
}