copyWith method

AddressMatchScore copyWith({
  1. int? score,
  2. bool? isPostalCodeMatch,
})

Implementation

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