copyWith method
Implementation
AddressMatchScore copyWith({int? score, bool? isPostalCodeMatch}) {
  return AddressMatchScore(
      score: score ?? this.score,
      isPostalCodeMatch: isPostalCodeMatch ?? this.isPostalCodeMatch);
}AddressMatchScore copyWith({int? score, bool? isPostalCodeMatch}) {
  return AddressMatchScore(
      score: score ?? this.score,
      isPostalCodeMatch: isPostalCodeMatch ?? this.isPostalCodeMatch);
}