IdentificationResult constructor

const IdentificationResult({
  1. required bool identified,
  2. required String customId,
  3. required double confidence,
  4. required double distance,
  5. String? imagePath,
})

Implementation

const IdentificationResult({
  required this.identified,
  required this.customId,
  required this.confidence,
  required this.distance,
  this.imagePath,
});