ScanbotCamera constructor

const ScanbotCamera({
  1. Key? key,
  2. required CameraConfiguration configuration,
  3. required dynamic onCameraReady(
    1. ScanbotCameraController
    ),
  4. Future onMethodCall(
    1. MethodCall methodCall
    )?,
  5. LiveDetector? detector,
  6. FinderConfiguration? finder,
  7. dynamic onCameraPreviewStarted()?,
  8. dynamic onHeavyOperationProcessing(
    1. bool
    )?,
  9. dynamic onPictureTaken(
    1. Page
    )?,
})

Implementation

const ScanbotCamera(
    {Key? key,
    required this.configuration,
    required this.onCameraReady,
    this.onMethodCall,
    this.detector,
    this.finder,
    this.onCameraPreviewStarted,
    this.onHeavyOperationProcessing,
    this.onPictureTaken})
    : super(key: key);