copyWithWrapped method
Implementation
PaymentInitiationPaymentListRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<int?>? count,
Wrapped<DateTime?>? cursor,
Wrapped<String?>? consentId}) {
return PaymentInitiationPaymentListRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
count: (count != null ? count.value : this.count),
cursor: (cursor != null ? cursor.value : this.cursor),
consentId: (consentId != null ? consentId.value : this.consentId));
}