ScanbotCamera constructor

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

    Implementation

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