FacePainter constructor

FacePainter({
  1. required List<FaceDetectionResult> results,
  2. required Size imageSize,
  3. InputImageRotation rotation = InputImageRotation.rotation0deg,
  4. bool isFrontCamera = false,
})

Implementation

FacePainter({
  required this.results,
  required this.imageSize,
  this.rotation = InputImageRotation.rotation0deg,
  this.isFrontCamera = false,
});