ScanParameters constructor

ScanParameters({
  1. MediaSize documentSize = MediaSize.A4,
  2. Duplex duplex = Duplex.Simplex,
  3. ColorProcessing colorType = ColorProcessing.FullColor,
  4. Resolution resolution = const Resolution(200, 200),
  5. ScanPaperSource paperSource = ScanPaperSource.AUTO,
  6. bool autoDocumentSizeScan = false,
  7. bool whitePageRemove = false,
  8. bool groundColorCorrection = false,
  9. ScanSpecialMode specialScanMode = ScanSpecialMode.NORMAL_SCAN,
})

Implementation

ScanParameters(
    {this.documentSize = MediaSize.A4,
    this.duplex = Duplex.Simplex,
    this.colorType = ColorProcessing.FullColor,
    this.resolution = const Resolution(200, 200),
    this.paperSource = ScanPaperSource.AUTO,
    this.autoDocumentSizeScan = false,
    this.whitePageRemove = false,
    this.groundColorCorrection = false,
    this.specialScanMode = ScanSpecialMode.NORMAL_SCAN});