copyWithWrapped method

EmailAddressMatchScore copyWithWrapped({
  1. Wrapped<int?>? score,
})

Implementation

EmailAddressMatchScore copyWithWrapped({Wrapped<int?>? score}) {
  return EmailAddressMatchScore(
      score: (score != null ? score.value : this.score));
}