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