OcrDataDialog constructor

const OcrDataDialog({
  1. Key? key,
  2. required OcrData ocrData,
  3. double width = 350,
  4. double height = 220,
})

Implementation

const OcrDataDialog({
  super.key,
  required this.ocrData,
  this.width = 350,
  this.height = 220,
});