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