FaceDetectionResult constructor

FaceDetectionResult({
  1. required Face face,
  2. required double confidence,
  3. int? estimatedAge,
  4. String? estimatedGender,
  5. String? dominantExpression,
  6. double? expressionConfidence,
  7. Map<String, double> expressions = const {},
  8. Float64List? faceEmbedding,
})

Implementation

FaceDetectionResult({
  required this.face,
  required this.confidence,
  this.estimatedAge,
  this.estimatedGender,
  this.dominantExpression,
  this.expressionConfidence,
  this.expressions = const {},
  this.faceEmbedding,
});