OcrTextResult constructor

const OcrTextResult({
  1. required String fullText,
  2. List<TextBlock> blocks = const [],
  3. double overallConfidence = 0.98,
  4. String primaryLanguage = 'latin',
})

Implementation

const OcrTextResult({
  required this.fullText,
  this.blocks = const [],
  this.overallConfidence = 0.98,
  this.primaryLanguage = 'latin',
});