copyWith method
Implementation
LinkTokenCreateRequestIdentityVerification copyWith(
{String? templateId, bool? consent, bool? gaveConsent}) {
return LinkTokenCreateRequestIdentityVerification(
templateId: templateId ?? this.templateId,
consent: consent ?? this.consent,
gaveConsent: gaveConsent ?? this.gaveConsent);
}