DocumentScanner constructor

const DocumentScanner({
  1. Key? key,
  2. required void onDocumentScanned(
    1. ScannedImage
    ),
  3. bool noGrayScale = true,
})

Implementation

const DocumentScanner({
  super.key,
  required this.onDocumentScanned,
  this.noGrayScale = true,
});