PreprocessingResult constructor

const PreprocessingResult({
  1. required Uint8List bytes,
  2. required int width,
  3. required int height,
  4. required double blurScore,
  5. required bool isBlurry,
  6. required double luminosity,
  7. required double contrastScore,
  8. required bool isLowLight,
  9. required bool isOverexposed,
})

Implementation

const PreprocessingResult({
  required this.bytes,
  required this.width,
  required this.height,
  required this.blurScore,
  required this.isBlurry,
  required this.luminosity,
  required this.contrastScore,
  required this.isLowLight,
  required this.isOverexposed,
});