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