copyWith method

InstitutionsSearchPaymentInitiationOptions copyWith({
  1. String? paymentId,
  2. String? consentId,
})

Implementation

InstitutionsSearchPaymentInitiationOptions copyWith(
    {String? paymentId, String? consentId}) {
  return InstitutionsSearchPaymentInitiationOptions(
      paymentId: paymentId ?? this.paymentId,
      consentId: consentId ?? this.consentId);
}