copyWithWrapped method
Implementation
AddressMatchScore copyWithWrapped(
{Wrapped<int?>? score, Wrapped<bool?>? isPostalCodeMatch}) {
return AddressMatchScore(
score: (score != null ? score.value : this.score),
isPostalCodeMatch: (isPostalCodeMatch != null
? isPostalCodeMatch.value
: this.isPostalCodeMatch));
}