copyWith method

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

Implementation

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