copyWith method

PhoneNumberMatchScore copyWith({
  1. int? score,
})

Implementation

PhoneNumberMatchScore copyWith({int? score}) {
  return PhoneNumberMatchScore(score: score ?? this.score);
}