FaceDetail constructor

FaceDetail({
  1. AgeRange? ageRange,
  2. Beard? beard,
  3. BoundingBox? boundingBox,
  4. double? confidence,
  5. List<Emotion>? emotions,
  6. Eyeglasses? eyeglasses,
  7. EyeOpen? eyesOpen,
  8. Gender? gender,
  9. List<Landmark>? landmarks,
  10. MouthOpen? mouthOpen,
  11. Mustache? mustache,
  12. Pose? pose,
  13. ImageQuality? quality,
  14. Smile? smile,
  15. Sunglasses? sunglasses,
})

Implementation

FaceDetail({
  this.ageRange,
  this.beard,
  this.boundingBox,
  this.confidence,
  this.emotions,
  this.eyeglasses,
  this.eyesOpen,
  this.gender,
  this.landmarks,
  this.mouthOpen,
  this.mustache,
  this.pose,
  this.quality,
  this.smile,
  this.sunglasses,
});