FaceComparisonResult constructor
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;
}
}