Camera constructor

Camera({
  1. Key? key,
  2. Function? onCapture,
  3. Function? onComplete,
  4. dynamic onError(
    1. dynamic error
    )?,
  5. Widget? overlayWidget,
  6. Widget? loadingWidget,
})

Implementation

Camera({
  Key? key,
  this.onCapture,
  this.onComplete,
  this.onError,
  this.overlayWidget,
  this.loadingWidget,
}) : super(key: key);