FaceBoundingBoxOverlay constructor

const FaceBoundingBoxOverlay({
  1. Key? key,
  2. required List<Face> faces,
  3. required Size imageSize,
  4. required Size widgetSize,
  5. Color boxColor = Colors.green,
  6. double strokeWidth = 2.0,
  7. bool showLabels = false,
  8. bool mirror = true,
})

Implementation

const FaceBoundingBoxOverlay({
  super.key,
  required this.faces,
  required this.imageSize,
  required this.widgetSize,
  this.boxColor = Colors.green,
  this.strokeWidth = 2.0,
  this.showLabels = false,
  this.mirror = true,
});