copyWith method
Implementation
PaymentInitiationPaymentListRequest copyWith(
{String? clientId,
String? secret,
int? count,
DateTime? cursor,
String? consentId}) {
return PaymentInitiationPaymentListRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
count: count ?? this.count,
cursor: cursor ?? this.cursor,
consentId: consentId ?? this.consentId);
}