CameraModule constructor

CameraModule({
  1. required NavigationHandler navigationHandler,
  2. CachedLocationHandler? cachedLocationHandler,
  3. ImageCaptureConfig? defaultCaptureConfig,
})

Implementation

CameraModule({
  required this.navigationHandler,
  final CachedLocationHandler? cachedLocationHandler,
  final ImageCaptureConfig? defaultCaptureConfig,
})  : defaultCaptureConfig = defaultCaptureConfig ?? ImageCaptureConfig(),
      cachedLocationHandler =
          cachedLocationHandler ?? CachedLocationHandler();