OcrElement constructor

OcrElement({
  1. required String text,
  2. required double confidence,
  3. required List<Point<double>> roi,
})

Implementation

OcrElement({
  required this.text,
  required this.confidence,
  required this.roi,
});