FaceVerificationResult constructor

const FaceVerificationResult({
  1. required bool isMatch,
  2. required double confidence,
  3. String? matchedTemplateId,
})

Implementation

const FaceVerificationResult({
  required this.isMatch,
  required this.confidence,
  this.matchedTemplateId,
});