copyWith method

Implementation

PaymentInitiationConsentConstraints copyWith(
    {PaymentConsentValidDateTime? validDateTime,
    PaymentConsentMaxPaymentAmount? maxPaymentAmount,
    List<PaymentConsentPeriodicAmount>? periodicAmounts}) {
  return PaymentInitiationConsentConstraints(
      validDateTime: validDateTime ?? this.validDateTime,
      maxPaymentAmount: maxPaymentAmount ?? this.maxPaymentAmount,
      periodicAmounts: periodicAmounts ?? this.periodicAmounts);
}