Cameras constructor

Cameras({
  1. required String name,
  2. required String resolution,
  3. required String videoResolution,
  4. required String orientation,
  5. required String focalLength,
  6. required List<String> focusModes,
  7. required bool videoSnapshotSupported,
  8. required bool videoStabilizationSupported,
  9. required bool zoomSupported,
  10. required bool smoothZoomSupported,
  11. required bool autoExposureLockingSupported,
  12. required bool autoWhiteBalanceLockingSupported,
  13. required bool flashSupported,
})

constructor for the class.

Implementation

Cameras({
  required this.name,
  required this.resolution,
  required this.videoResolution,
  required this.orientation,
  required this.focalLength,
  required this.focusModes,
  required this.videoSnapshotSupported,
  required this.videoStabilizationSupported,
  required this.zoomSupported,
  required this.smoothZoomSupported,
  required this.autoExposureLockingSupported,
  required this.autoWhiteBalanceLockingSupported,
  required this.flashSupported,
});