copyWith method

LinkTokenCreateRequestIdentityVerification copyWith({
  1. String? templateId,
  2. bool? consent,
  3. bool? gaveConsent,
})

Implementation

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