AnalysisImageWrapper constructor

AnalysisImageWrapper({
  1. required AnalysisImageFormat format,
  2. Uint8List? bytes,
  3. required int width,
  4. required int height,
  5. List<PlaneWrapper?>? planes,
  6. CropRectWrapper? cropRect,
  7. AnalysisRotation? rotation,
})

Implementation

AnalysisImageWrapper({
  required this.format,
  this.bytes,
  required this.width,
  required this.height,
  this.planes,
  this.cropRect,
  this.rotation,
});