copyWith method

EntityScreeningHitEmails copyWith({
  1. String? emailAddress,
})

Implementation

EntityScreeningHitEmails copyWith({String? emailAddress}) {
  return EntityScreeningHitEmails(
      emailAddress: emailAddress ?? this.emailAddress);
}