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 onHeavyOperationProcessing(
    1. bool
    )?,
  7. dynamic onPictureTaken(
    1. Page
    )?}
)

Implementation

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