DetectedObjects constructor

const DetectedObjects({
  1. DetectedObjectRect? basketball,
  2. DetectedObjectRect? hoop,
  3. DetectedObjectRect? player,
  4. required DateTime timestamp,
  5. String modelType = 'none',
})

Implementation

const DetectedObjects({
  this.basketball,
  this.hoop,
  this.player,
  required this.timestamp,
  this.modelType = 'none',
});