copyWithWrapped method

EntityScreeningHitEmails copyWithWrapped({
  1. Wrapped<String>? emailAddress,
})

Implementation

EntityScreeningHitEmails copyWithWrapped({Wrapped<String>? emailAddress}) {
  return EntityScreeningHitEmails(
      emailAddress:
          (emailAddress != null ? emailAddress.value : this.emailAddress));
}