copyWithWrapped method

InstitutionsSearchPaymentInitiationOptions copyWithWrapped({
  1. Wrapped<String?>? paymentId,
  2. Wrapped<String?>? consentId,
})

Implementation

InstitutionsSearchPaymentInitiationOptions copyWithWrapped(
    {Wrapped<String?>? paymentId, Wrapped<String?>? consentId}) {
  return InstitutionsSearchPaymentInitiationOptions(
      paymentId: (paymentId != null ? paymentId.value : this.paymentId),
      consentId: (consentId != null ? consentId.value : this.consentId));
}