YOLODetectionPainter constructor

YOLODetectionPainter({
  1. required List<YOLOResult> detections,
  2. required bool showConfidence,
  3. required bool showClassName,
  4. required YOLOOverlayTheme theme,
})

Implementation

YOLODetectionPainter({
  required this.detections,
  required this.showConfidence,
  required this.showClassName,
  required this.theme,
});