TextLine constructor

const TextLine({
  1. required String text,
  2. List<TextElement> elements = const [],
  3. Rect? boundingBox,
  4. double confidence = 1.0,
  5. String? recognizedLanguage,
})

Implementation

const TextLine({
  required this.text,
  this.elements = const [],
  this.boundingBox,
  this.confidence = 1.0,
  this.recognizedLanguage,
});