Scanner constructor

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

Implementation

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