DetectedObject constructor

DetectedObject({
  1. int? trackingId,
  2. required Rect boundingBox,
  3. List<DetectedLabel> labels = const [],
})

Implementation

DetectedObject({
  this.trackingId,
  required this.boundingBox,
  this.labels = const [],
});