copyWithWrapped method
Implementation
LinkTokenCreateRequestIdentityVerification copyWithWrapped(
{Wrapped<String>? templateId,
Wrapped<bool?>? consent,
Wrapped<bool?>? gaveConsent}) {
return LinkTokenCreateRequestIdentityVerification(
templateId: (templateId != null ? templateId.value : this.templateId),
consent: (consent != null ? consent.value : this.consent),
gaveConsent:
(gaveConsent != null ? gaveConsent.value : this.gaveConsent));
}