copyWithWrapped method

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

Implementation

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