copyWith method

PaymentInitiationPaymentListRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. int? count,
  4. DateTime? cursor,
  5. String? consentId,
})

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);
}