FaceDetection constructor

FaceDetection({
  1. required Rect boundingBox,
  2. required double score,
  3. List<Offset> landmarks = const [],
})

Implementation

FaceDetection({
  required this.boundingBox,
  required this.score,
  this.landmarks = const [],
}) : hasError = false;