copyWith method

EntityScreeningHitNames copyWith({
  1. String? full,
  2. bool? isPrimary,
  3. WeakAliasDetermination? weakAliasDetermination,
})

Implementation

EntityScreeningHitNames copyWith(
    {String? full,
    bool? isPrimary,
    enums.WeakAliasDetermination? weakAliasDetermination}) {
  return EntityScreeningHitNames(
      full: full ?? this.full,
      isPrimary: isPrimary ?? this.isPrimary,
      weakAliasDetermination:
          weakAliasDetermination ?? this.weakAliasDetermination);
}