CameraInfo constructor

const CameraInfo({
  1. required int width,
  2. required int height,
  3. required double fps,
  4. required String name,
  5. required int cameraIndex,
  6. required VideoCaptureAPIs backend,
})

Implementation

const CameraInfo({
  required this.width,
  required this.height,
  required this.fps,
  required this.name,
  required this.cameraIndex,
  required this.backend,
});