copyWithWrapped method

LinkTokenCreateRequestIdentityVerification copyWithWrapped({
  1. Wrapped<String>? templateId,
  2. Wrapped<bool?>? consent,
  3. Wrapped<bool?>? gaveConsent,
})

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));
}