copyWithWrapped method
Implementation
LinkTokenCreateRequestTransfer copyWithWrapped(
{Wrapped<String?>? intentId, Wrapped<String?>? paymentProfileToken}) {
return LinkTokenCreateRequestTransfer(
intentId: (intentId != null ? intentId.value : this.intentId),
paymentProfileToken: (paymentProfileToken != null
? paymentProfileToken.value
: this.paymentProfileToken));
}