copyWith method

Implementation

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