CustomFace constructor

CustomFace({
  1. int? trackingId,
  2. double? smilingProbability,
  3. double? headEulerAngleX,
  4. double? headEulerAngleY,
  5. double? leftEyeOpenProbability,
  6. double? rightEyeOpenProbability,
  7. required Rect boundingBox,
  8. List<Vector3>? landmarks,
})

Implementation

CustomFace({
  this.trackingId,
  this.smilingProbability,
  this.headEulerAngleX,
  this.headEulerAngleY,
  this.leftEyeOpenProbability,
  this.rightEyeOpenProbability,
  required this.boundingBox,
  this.landmarks,
});