FaceComparisonResult constructor

FaceComparisonResult(
  1. {int score,
  2. int authenticationThreshold,
  3. int max}
)

Implementation

FaceComparisonResult({int score, int authenticationThreshold, int max}) {
  if (score != null) {
    this.score = score;
  }
  if (authenticationThreshold != null) {
    this.authenticationThreshold = authenticationThreshold;
  }
  if (max != null) {
    this.max = max;
  }
}