LightingDetectionResult constructor

LightingDetectionResult({
  1. required bool isGoodLighting,
  2. required double avgBrightness,
  3. required double contrast,
  4. required double overexposureRatio,
  5. required double underexposureRatio,
  6. LightingIssue? issue,
})

Creates a lighting detection result.

Implementation

LightingDetectionResult({
  required this.isGoodLighting,
  required this.avgBrightness,
  required this.contrast,
  required this.overexposureRatio,
  required this.underexposureRatio,
  this.issue,
});