FaceMatching constructor

const FaceMatching({
  1. required String notes,
  2. required bool isSuccessful,
  3. required int matchingScore,
  4. required int thresholdUsed,
})

Implementation

const FaceMatching({
  required this.notes,
  required this.isSuccessful,
  required this.matchingScore,
  required this.thresholdUsed,
});