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. ScanbotCameraController? controller,
  8. dynamic onError(
    1. SBException error
    )?,
})

Implementation

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