copyWithWrapped method
Implementation
IdentityVerificationTemplateReference copyWithWrapped(
{Wrapped<String>? id, Wrapped<num>? version}) {
return IdentityVerificationTemplateReference(
id: (id != null ? id.value : this.id),
version: (version != null ? version.value : this.version));
}