CVResult constructor
CVResult({
- required String text,
- required double confidence,
- BoundingBox? boundingBox,
- String? label,
- required double score,
Implementation
CVResult({
required this.text,
required this.confidence,
this.boundingBox,
this.label,
required this.score,
});