Yuv420Image constructor

const Yuv420Image({
  1. required int height,
  2. required int width,
  3. required Rect cropRect,
  4. required List<ImagePlane> planes,
  5. required InputAnalysisImageFormat format,
  6. required InputAnalysisImageRotation rotation,
})

Implementation

const Yuv420Image({
  required super.height,
  required super.width,
  required this.cropRect,
  required this.planes,
  required super.format,
  required super.rotation,
});