CVResult constructor

CVResult({
  1. required String text,
  2. required double confidence,
  3. BoundingBox? boundingBox,
  4. String? label,
  5. required double score,
})

Implementation

CVResult({
  required this.text,
  required this.confidence,
  this.boundingBox,
  this.label,
  required this.score,
});