copyWith method
PaymentInitiationConsentPaymentExecuteRequest
copyWith({
- String? clientId,
- String? secret,
- String? consentId,
- PaymentAmount? amount,
- String? idempotencyKey,
Implementation
PaymentInitiationConsentPaymentExecuteRequest copyWith(
{String? clientId,
String? secret,
String? consentId,
PaymentAmount? amount,
String? idempotencyKey}) {
return PaymentInitiationConsentPaymentExecuteRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
consentId: consentId ?? this.consentId,
amount: amount ?? this.amount,
idempotencyKey: idempotencyKey ?? this.idempotencyKey);
}