ScanbotCamera constructor

const ScanbotCamera({
  1. Key? key,
  2. required BaseCameraConfiguration configuration,
  3. Future onMethodCall(
    1. MethodCall methodCall
    )?,
  4. FinderConfiguration? finder,
  5. dynamic onCameraPreviewStarted(
    1. bool isFlashAvailable
    )?,
  6. dynamic onHeavyOperationProcessing(
    1. bool
    )?,
  7. dynamic onPictureTaken(
    1. ImageRef
    )?,
  8. ScanbotCameraController? controller,
})

Implementation

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