FaceDetectionResult constructor

FaceDetectionResult({
  1. bool detected = false,
  2. double? left,
  3. double? top,
  4. double? width,
  5. double? height,
  6. String? message,
})

Implementation

FaceDetectionResult({
  this.detected = false,
  this.left,
  this.top,
  this.width,
  this.height,
  this.message,
});