CameraFrame constructor

const CameraFrame({
  1. required Uint8List bytes,
  2. required int width,
  3. required int height,
  4. required int strideCols,
  5. required CameraFrameConversion conversion,
  6. CameraFrameRotation? rotation,
})

Implementation

const CameraFrame({
  required this.bytes,
  required this.width,
  required this.height,
  required this.strideCols,
  required this.conversion,
  this.rotation,
});