TextElement constructor

const TextElement({
  1. required String text,
  2. double confidence = 1.0,
  3. Rect? boundingBox,
  4. String? recognizedLanguage,
})

Implementation

const TextElement({
  required this.text,
  this.confidence = 1.0,
  this.boundingBox,
  this.recognizedLanguage,
});